You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to validate an example Patient record from the implementation guide i'm using (de.basisprofil-r4):
And this is the warning i always get:
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-line",
"valueInteger": 6
},
{
"url": "http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-col",
"valueInteger": 14
},
{
"url": "http://hl7.org/fhir/StructureDefinition/operationoutcome-message-id",
"valueString": "Terminology_TX_NoValid_2_CC"
}
],
"severity": "warning",
"code": "processing",
"details": {
"coding": [
{
"system": "http://hl7.org/fhir/java-core-messageId",
"code": "Terminology_TX_NoValid_2_CC"
}
]
},
"diagnostics": "None of the codings provided are in the value set 'IdentifierType' (http://hl7.org/fhir/ValueSet/identifier-type|4.0.1), and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = http://fhir.de/CodeSystem/identifier-type-de-basis#KVZ10)",
"location": [
"Patient.identifier[0].type",
"Line[6] Col[14]"
]
},
I can lookup the Code in the CodeSystem in my server:
You are providing a code outside of the specified valueset - which is allowed since it's an extensible binding - but the validator is warning you regardless. I don't know of a way to suppress that warning.
Anyway, it would be an issue to report against the HAPI validator, not this project which is merely using the validator.
Hey all,
I am trying to validate an example Patient record from the implementation guide i'm using (de.basisprofil-r4):
And this is the warning i always get:
I can lookup the Code in the CodeSystem in my server:
Here is the example Patient:
The text was updated successfully, but these errors were encountered: