Stream: implementers
Topic: Publisher - QA error since 1.1.21
David Gutknecht (Sep 16 2020 at 09:41):
Hello,
I created in our IG our own Bundle, were we sliced the entries, to ensure that the bundle only contains entry we expect.
<element id="Bundle.entry">
<path value="Bundle.entry" />
<short value="First Composition must be a mni-patientOverview-composition"/>
<slicing>
<discriminator>
<type value="profile"/>
<path value="resource"/>
</discriminator>
<ordered value="false"/>
<rules value="open" />
</slicing>
<min value="1" />
<mustSupport value="true"/>
</element>
<element id="Bundle.entry:Composition">
<path value="Bundle.entry" />
<sliceName value="Composition" />
<short value="Composition" />
<min value="1" />
<max value="1" />
<mustSupport value="true"/>
</element>
<element id="Bundle.entry:Composition.resource">
<path value="Bundle.entry.resource" />
<min value="1"/>
<max value="1"/>
<type>
<code value="Composition" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-patientOverview-composition" />
</type>
<mustSupport value="true"/>
</element>
Except the duplicate Id value error message the example I provided was validated by the publisher 1.1.20 without errors .
(See example)
Since Publisher version 1.1.21 the QA report lists following error message:
grafik.png
Does someone have an Idea ?
Did I do something wrong on the slicing or is it a publisher bug ?
Best regards,
David
Grahame Grieve (Sep 16 2020 at 09:49):
hmm, this is one of those discovered bugs. I fixed a bug for someone else, and now.... but it should be fixed in the 1.1.22 release
Grahame Grieve (Sep 16 2020 at 09:50):
no. 1.1.23. 1.1.21 is so yesterday
David Gutknecht (Sep 16 2020 at 09:50):
I tried a few minutes ago with 1.1.23 and the bug was still there
Grahame Grieve (Sep 16 2020 at 09:51):
really?
David Gutknecht (Sep 16 2020 at 09:51):
To be sure, I retry again and let you know
Grahame Grieve (Sep 16 2020 at 09:51):
oh. maybe I didn't commit that bit...
Grahame Grieve (Sep 16 2020 at 09:52):
it was one of those days...
David Gutknecht (Sep 16 2020 at 09:53):
I started a new generation with the publisher 1.1.23. It will need some time, my computer is not the fastest one.
David Gutknecht (Sep 16 2020 at 10:13):
David Gutknecht (Sep 16 2020 at 10:15):
Did you maybe fix it in 1.1.24 but this one has not been release ? Should I test with 1.1.24 ?
David Gutknecht (Sep 17 2020 at 08:39):
I tested with 1.1.24. Same issue :sad:
Grahame Grieve (Sep 17 2020 at 11:32):
will be fixed in the next version
David Gutknecht (Sep 17 2020 at 12:46):
Perfekt ! Thanks
David Gutknecht (Sep 18 2020 at 09:48):
Hello Grahame, 1.1.25 solved the problem. I have now another error message on the qa report :grinning_face_with_smiling_eyes:
Multiple profiles found for contained resource. This is not supported at this time. (Type Observation: https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyWeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyHeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyMassIndex, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodPressure, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodGroup, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfConception, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfDelivery, https://mednet.swiss/fhir/StructureDefinition/mni-obs-dateOfLastMenstruation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-timeOfGestation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory, https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor)
When I created the slices for my bundle I create a slice for the Observation entries and put following peace of code,
with multiple profiles possible for a type:
<element id="Bundle.entry:Observation">
<path value="Bundle.entry" />
<sliceName value="Observation" />
<short value="all the Observation objects included" />
<min value="0" />
<max value="*" />
<mustSupport value="true"/>
</element>
<element id="Bundle.entry:Observation.fullUrl">
<path value="Bundle.entry.fullUrl" />
<short value="URI for the resource. Made from <resource type>/<resource id>
This could also be an url from type https://server/<resource type>/<resource id>
or an UUID like urn:uuid:148d342c-5052-4b9e-8370-2923af30e867
In this case, this should also be used as reference value in all the bundle."/>
<min value="1"/>
<max value="1"/>
<mustSupport value="true"/>
</element>
<element id="Bundle.entry:Observation.resource">
<path value="Bundle.entry.resource" />
<min value="1"/>
<max value="1"/>
<type>
<code value="Observation" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyWeight" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyHeight" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyMassIndex" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodPressure" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodGroup" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfConception" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfDelivery" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-dateOfLastMenstruation" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-timeOfGestation" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory" />
<profile value="https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor" />
</type>
<mustSupport value="true"/>
</element>
Does it mean that I'm wrong and that I should create a slice for each Observation ?
Looking at the cardinality on ElementDefinition Object, it seems to be allowed:
image.png
Best regards,
David
Shovan Roy (Sep 21 2020 at 05:30):
@Grahame Grieve , we are also facing same issue (Multiple profiles found for contained resource.). In our case, we have a Bundle document profile where the entry is open sliced to allow certain types of Composition and any other resources. We have it sliced with type:resource and value:fullurl. Here is the link of the profile:http://build.fhir.org/ig/hl7au/au-fhir-childhealth/branches/au-fhir-ch-r4/StructureDefinition-ncdhc-bundle-document.html and details on the error: http://build.fhir.org/ig/hl7au/au-fhir-childhealth/branches/au-fhir-ch-r4/qa.html. any suggestion would be very helpful.
David Gutknecht (Sep 22 2020 at 07:52):
I tested with 1.1.26. Same problem :disappointed:
David Gutknecht (Sep 25 2020 at 13:58):
I tested with 1.1.27 Same issue :cry:
@Grahame Grieve please help :pray:
David Gutknecht (Sep 29 2020 at 11:06):
I also tested with 1.1.32 Still the same issue :confounded:
Grahame Grieve (Oct 08 2020 at 03:27):
RIght. no change. this appears to be a case if us making a pragmatic decision not to implement that yet. Does either of you have an example that illustrates the problem using the validator?
David Gutknecht (Oct 09 2020 at 13:52):
Hello @Grahame Grieve ,
FHIR Validation tool Version 5.1.16 result:
*FAILURE*: 14 errors, 3 warnings, 8 notes
Error @ Bundle.entry[20].resource.ofType(Observation) (line 1888, col23) : Multiple profiles found for contained resource. This is not supported at this time. (Type Observation: https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyWeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyHeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyMassIndex, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodPressure, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodGroup, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfConception, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfDelivery, https://mednet.swiss/fhir/StructureDefinition/mni-obs-dateOfLastMenstruation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-timeOfGestation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory, https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor)
etc ...
you can test with https://mednet.swiss/fhir/Bundle-mni-patientOverview-bundle-example1.json
Just specify the "-ig https://mednet.swiss/fhir"
Grahame Grieve (Oct 14 2020 at 00:09):
so I did that, and got these warnings and hints:
Grahame Grieve (Oct 14 2020 at 00:09):
WARNING: Bundle.entry[0].resource.ofType(Composition).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-patientOverview-composition' could not be resolved, so has not been checked
WARNING: Bundle.entry[1].resource.ofType(Patient).contact[0].relationship[1]: None of the codes provided are in the value set http://hl7.org/fhir/ValueSet/patient-contactrelationship (http://hl7.org/fhir/ValueSet/patient-contactrelationship), and a code should come from this value set unless it has no suitable code and the validator cannot judge what is suitable) (codes = http://terminology.hl7.org/CodeSystem/v3-RoleCode#SIS)
WARNING: Bundle.entry[1].resource.ofType(Patient).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-patient' could not be resolved, so has not been checked
WARNING: Bundle.entry[2].resource.ofType(Organization).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-organization' could not be resolved, so has not been checked
WARNING: Bundle.entry[4].resource.ofType(Encounter).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-encounter' could not be resolved, so has not been checked
WARNING: Bundle.entry[5].resource.ofType(ServiceRequest).contained.ofType(Organization).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-organization' could not be resolved, so has not been checked
WARNING: Bundle.entry[5].resource.ofType(ServiceRequest).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-serviceRequest' could not be resolved, so has not been checked
WARNING: Bundle.entry[7].resource.ofType(Coverage).contained[0].ofType(RelatedPerson).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-relatedPerson' could not be resolved, so has not been checked
WARNING: Bundle.entry[7].resource.ofType(Coverage).contained[1].ofType(Contract).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-contract' could not be resolved, so has not been checked
WARNING: Bundle.entry[7].resource.ofType(Coverage).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-coverage' could not be resolved, so has not been checked
WARNING: Bundle.entry[8].resource.ofType(Organization).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-organization' could not be resolved, so has not been checked
WARNING: Bundle.entry[9].resource.ofType(RelatedPerson).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-relatedPerson' could not be resolved, so has not been checked
WARNING: Bundle.entry[10].resource.ofType(MedicationStatement).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-medicationStatement' could not be resolved, so has not been checked
INFORMATION: Bundle.entry[11].resource.ofType(Medication).code.coding[0]: Code System URI 'urn:oid:2.51.1.1' is unknown so the code cannot be validated
INFORMATION: Bundle.entry[11].resource.ofType(Medication).code.coding[1]: Code System URI 'urn:oid:2.16.756.5.30.2.6.1' is unknown so the code cannot be validated
INFORMATION: Bundle.entry[11].resource.ofType(Medication).code.coding[2]: Code System URI 'https://mednet.swiss/fhir/productNumber' is unknown so the code cannot be validated
WARNING: Bundle.entry[11].resource.ofType(Medication).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-medication' could not be resolved, so has not been checked
INFORMATION: Bundle.entry[12].resource.ofType(MedicationStatement).contained.ofType(Medication).code.coding[0]: Code System URI 'urn:oid:2.51.1.1' is unknown so the code cannot be validated
INFORMATION: Bundle.entry[12].resource.ofType(MedicationStatement).contained.ofType(Medication).code.coding[1]: Code System URI 'urn:oid:2.16.756.5.30.2.6.1' is unknown so the code cannot be validated
INFORMATION: Bundle.entry[12].resource.ofType(MedicationStatement).contained.ofType(Medication).code.coding[2]: Code System URI 'https://mednet.swiss/fhir/productNumber' is unknown so the code cannot be validated
WARNING: Bundle.entry[12].resource.ofType(MedicationStatement).contained.ofType(Medication).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-medication' could not be resolved, so has not been checked
WARNING: Bundle.entry[12].resource.ofType(MedicationStatement).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-medicationStatement' could not be resolved, so has not been checked
INFORMATION: Bundle.entry[13].resource.ofType(MedicationStatement).contained.ofType(Medication).code.coding[0]: Code System URI 'urn:oid:2.51.1.1' is unknown so the code cannot be validated
INFORMATION: Bundle.entry[13].resource.ofType(MedicationStatement).contained.ofType(Medication).code.coding[1]: Code System URI 'urn:oid:2.16.756.5.30.2.6.1' is unknown so the code cannot be validated
INFORMATION: Bundle.entry[13].resource.ofType(MedicationStatement).contained.ofType(Medication).code.coding[2]: Code System URI 'https://mednet.swiss/fhir/productNumber' is unknown so the code cannot be validated
WARNING: Bundle.entry[13].resource.ofType(MedicationStatement).contained.ofType(Medication).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-medication' could not be resolved, so has not been checked
WARNING: Bundle.entry[13].resource.ofType(MedicationStatement).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-medicationStatement' could not be resolved, so has not been checked
WARNING: Bundle.entry[14].resource.ofType(AllergyIntolerance).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-allergyIntolerance' could not be resolved, so has not been checked
WARNING: Bundle.entry[15].resource.ofType(AllergyIntolerance).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-allergyIntolerance' could not be resolved, so has not been checked
WARNING: Bundle.entry[16].resource.ofType(Condition).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-condition' could not be resolved, so has not been checked
WARNING: Bundle.entry[17].resource.ofType(Condition).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-condition' could not be resolved, so has not been checked
WARNING: Bundle.entry[18].resource.ofType(Procedure).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-procedure' could not be resolved, so has not been checked
WARNING: Bundle.entry[19].resource.ofType(Procedure).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-procedure' could not be resolved, so has not been checked
WARNING: Bundle.entry[20].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory' could not be resolved, so has not been checked
WARNING: Bundle.entry[21].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory' could not be resolved, so has not been checked
WARNING: Bundle.entry[22].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory' could not be resolved, so has not been checked
WARNING: Bundle.entry[23].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyWeight' could not be resolved, so has not been checked
WARNING: Bundle.entry[24].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyHeight' could not be resolved, so has not been checked
WARNING: Bundle.entry[25].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyMassIndex' could not be resolved, so has not been checked
WARNING: Bundle.entry[26].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodPressure' could not be resolved, so has not been checked
INFORMATION: Bundle.entry[27].resource.ofType(Observation).value.ofType(CodeableConcept).coding[1]: Code System URI 'https://mednet.swiss/fhir/CodeSystem/mni-obs-bloodGroup' is unknown so the code cannot be validated
WARNING: Bundle.entry[27].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodGroup' could not be resolved, so has not been checked
WARNING: Bundle.entry[28].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor' could not be resolved, so has not been checked
WARNING: Bundle.entry[29].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor' could not be resolved, so has not been checked
WARNING: Bundle.entry[30].resource.ofType(FamilyMemberHistory).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-familyMemberHistory' could not be resolved, so has not been checked
WARNING: Bundle.entry[31].resource.ofType(FamilyMemberHistory).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-familyMemberHistory' could not be resolved, so has not been checked
WARNING: Bundle.entry[32].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfConception' could not be resolved, so has not been checked
WARNING: Bundle.entry[33].resource.ofType(Observation).meta.profile[0]: Profile reference 'https://mednet
David Gutknecht (Oct 15 2020 at 07:26):
Hello @Grahame Grieve
real strange. I can still reproduce it.
- I download the file https://mednet.swiss/fhir/Bundle-mni-patientOverview-bundle-example1.json
- I download the last validator_cli.jar (Version 5.1.17 (Git# 44f7dca1c794). Built 2020-10-14T20:04:32.293Z (11 hours old))
- Put them in the same folder
- run
java.exe" -jar .\validator_cli.jar .\Bundle-mni-patientOverview-bundle-example1.json -version 4.0 -ig https://mednet.swiss/fhir
- The stack Trace contains following errors
Validate .\Bundle-mni-patientOverview-bundle-example1.json 00:51.0108
Done. Times: Loading: 00:11.0933, validation: 00:51.0109
*FAILURE*: 14 errors, 3 warnings, 8 notes
Error @ Bundle.entry[20].resource.ofType(Observation) (line 1515, col27) : Multiple profiles found for contained resource. This is not supported at this time. (Type Observation: https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyWeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyHeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyMassIndex, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodPressure, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodGroup, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfConception, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfDelivery, https://mednet.swiss/fhir/StructureDefinition/mni-obs-dateOfLastMenstruation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-timeOfGestation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory, https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor)
Error @ Bundle.entry[21].resource.ofType(Observation) (line 1561, col27) : Multiple profiles found for contained resource. This is not supported at this time. (Type Observation: https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyWeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyHeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyMassIndex, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodPressure, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodGroup, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfConception, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfDelivery, https://mednet.swiss/fhir/StructureDefinition/mni-obs-dateOfLastMenstruation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-timeOfGestation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory, https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor)
Error @ Bundle.entry[22].resource.ofType(Observation) (line 1607, col27) : Multiple profiles found for contained resource. This is not supported at this time. (Type Observation: https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyWeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyHeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyMassIndex, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodPressure, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodGroup, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfConception, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfDelivery, https://mednet.swiss/fhir/StructureDefinition/mni-obs-dateOfLastMenstruation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-timeOfGestation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory, https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor)
Error @ Bundle.entry[23].resource.ofType(Observation) (line 1654, col27) : Multiple profiles found for contained resource. This is not supported at this time. (Type Observation: https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyWeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyHeight, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bodyMassIndex, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodPressure, https://mednet.swiss/fhir/StructureDefinition/mni-obs-bloodGroup, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfConception, https://mednet.swiss/fhir/StructureDefinition/mni-obs-estimatedDateOfDelivery, https://mednet.swiss/fhir/StructureDefinition/mni-obs-dateOfLastMenstruation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-timeOfGestation, https://mednet.swiss/fhir/StructureDefinition/mni-obs-laboratory, https://mednet.swiss/fhir/StructureDefinition/mni-obs-riskFactor)
[...]
Rinold S (Oct 15 2020 at 08:31):
Yes @Mareike Przysucha
David Gutknecht (Oct 29 2020 at 07:40):
Hello @Grahame Grieve
any news about this point ? Is it planned to be fixed, or should I adapt my IG Definition ?
Grahame Grieve (Oct 30 2020 at 00:56):
I think I actually fixed it this time
David Gutknecht (Nov 02 2020 at 12:01):
Thanks !! :tada: :dancing:
Will it be available in the next release 1.1.36 right ?
Best regards
Grahame Grieve (Nov 02 2020 at 20:45):
should be released now
David Gutknecht (Nov 05 2020 at 14:45):
Hello @Grahame Grieve
I tested with the last IG Publisher Version: v1.1.39.
And the error still appears in the QA Report :cry:
David Gutknecht (Nov 05 2020 at 15:39):
Also tested the last validator version, and still have the error message
FHIR Validation tool Version 5.1.20 (Git# 05056e643e5b). Built 2020-11-05T05:41:42.979Z (9 hours old)
"Multiple profiles found for contained resource. This is not supported at this time."
Grahame Grieve (Nov 13 2020 at 03:19):
when i ruin what you hvae, I get 1210 errors, but none of them are about "Multiple profiles found for contained resource. This is not supported"
David Gutknecht (Nov 17 2020 at 10:16):
Hello @Grahame Grieve ,
I did a full test in a different environment, to be sure.
And did the full process I described in my Post from the 15. October
I use the validator Validator Version 5.1.22 (Git# 10859ee2bf4d). Built 2020-11-13T05:37:07.463Z (4 days old)
run java.exe" -jar .\validator_cli.jar .\Bundle-mni-patientOverview-bundle-example1.json -version 4.0 -ig https://mednet.swiss/fhir -html-output validation.html
( I added the option -html-output to get the result as an html)
In the resulting html I can find the error message :
"Multiple profiles found for contained resource. This is not supported at this time"
It is strange because when using the publisher the example file doesn't have that many error messages.
And I saw that I have many errors from the type :
URL value 'https://mednet.swiss' does not resolve
Any idea ?
Best regards,
David Gutknecht (Dec 09 2020 at 13:27):
Tested with the FHIR IG Publisher Version 1.1.51 .
The error message is still there.
David Gutknecht (Jan 15 2021 at 10:24):
I finally solved the issue by defining each profile separatedly
Last updated: Apr 12 2022 at 19:14 UTC