-
Type:
Technical Correction
-
Resolution: Persuasive
-
Priority:
Medium
-
US Core (FHIR)
-
3.1.0 [deprecated]
-
Cross-Group Projects
-
(NA)
(many) -
-
Correction
from US-Core-R4/source/pages/general-guidance.md:
{ "resourceType" : "Patient", ... "name":[ "extension" : [ "url" : "http://hl7.org/fhir/StructureDefinition/data-absent-reason", "valueCode" : "unknown" }]
]
"telecom" :
...
}
The actutal data absent reason extension above is invalid JSON. it should be:
{
"resourceType" : "Patient",
...
"name":[{
"extension" : [
]
}]
"telecom" :
...
}