AU Base Implementation Guide
4.2.2-ballot - Ballot
This page is part of the Australian Base IG (v4.2.2-ballot: AU Base R4.2 Ballot 5) based on FHIR (HL7® FHIR® Standard) R4. The current version which supersedes this version is 4.1.0. For a full list of available versions, see the Directory of published versions
Page standards status: Informative |
{
"resourceType" : "Patient",
"id" : "DateAccuracyIndicatorUAAexample2",
"text" : {
"status" : "additional",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>This example demonstrates birth date and deceased date with unknown day, accurate month and year.</p>\n <p>Note that "1978-08-00" is NOT a valid FHIR date.</p>\n <p>Details include:</p>\n <ul>\n <li>A valid FHIR date example for birth date and deceased date is "1978-08-21" but not "1978-08-00".</li>\n <li>A date accuracy indicator of "UAA" indicates that the day is unknown but month and year are accurate.</li>\n <li>When a code value contains "U", the corresponding date components (individual or combination) for birth or deceased dates must be ignored.</li>\n <li>When a code value contains "A", the corresponding date components (individual or combination) for birth or deceased dates must be accurate.</li>\n </ul>\n </div>"
},
"birthDate" : "1978-08-21",
"_birthDate" : {
"extension" : [
{
"url" : "http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator",
"valueCoding" : // this part of the extension states that date of birth is partially accurate
{
"system" : "https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1",
"code" : "UAA",
"display" : "Day is unknown, month and year are accurate"
}
}
]
},
"deceasedDateTime" : "1978-08-21T13:42:00+10:00",
"_deceasedDateTime" : {
"extension" : [
{
"url" : "http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator",
"valueCoding" : // this part of the extension states that deceased date is partially accurate
{
"system" : "https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1",
"code" : "UAA",
"display" : "Day is unknown, month and year are accurate"
}
}
]
}
}