Stream: argonaut
Topic: Bug in Provenance StructureDefinition
Yunwei Wang (Mar 18 2022 at 16:10):
i think there is a bug in Provenance SD in v4.0.0 and v4.2.0. Here is _targetProfile for agent.who
"_targetProfile": [
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": true
},
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": true
},
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": false
},
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": false
},
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": false
},
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": false
}
]
},
null,
null,
null,
null,
null
]
What it should be is
"_targetProfile": [
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": true
}
]
},
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": true
}
]
},
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-type-must-support",
"valueBoolean": false
}
]
},
...
]
@Eric Haas
Eric Haas (Mar 18 2022 at 16:37):
:+1: can you make a tracker?
Eric Haas (Mar 18 2022 at 16:38):
label as a 4.0.0 patch?
Yunwei Wang (Mar 18 2022 at 16:49):
https://jira.hl7.org/browse/FHIR-36344
Last updated: Apr 12 2022 at 19:14 UTC