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
: Patient - with Birth Date Accuracy Indicator of UUU - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "DateAccuracyIndicatorUUUexample4"] ; #
fhir:text [
fhir:status [ fhir:v "additional" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>This example demonstrates birth date and deceased date with an unknown day, month and year.</p>\n <p>Note that "0000-00-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 "2004-12-08” but not "0000-00-00".</li>\n <li>A date accuracy indicator of "UUU" indicates that all date components are unknown.</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 </ul>\n </div>"
] ; #
fhir:birthDate [
fhir:v "2004-12-08"^^xsd:date ;
( fhir:extension [
fhir:url [ fhir:v "http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator"^^xsd:anyURI ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1"^^xsd:anyURI ] ;
fhir:code [ fhir:v "UUU" ] ;
fhir:display [ fhir:v "Day, month and year are unknown" ] ] # this part of the extension states that date of birth is unknown ] )
] ; #
fhir:deceased [
fhir:v "2004-12-08T13:42:00+10:00"^^xsd:dateTime ;
( fhir:extension [
fhir:url [ fhir:v "http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator"^^xsd:anyURI ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1"^^xsd:anyURI ] ;
fhir:code [ fhir:v "UUU" ] ;
fhir:display [ fhir:v "Day, month and year are unknown" ] ] # this part of the extension states that deceased date is unknown ] )
] . #