This page is part of the AU Base Implementation Guide 4.1.0. It is based on FHIR R4. For a full list of available versions, see the Directory of published versions
: Patient - with Birth Date Accuracy Indicator of UEA - 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:Resource.id [ fhir:value "DateAccuracyIndicatorUEAexample3"]; #
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "additional" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>This example demonstrates birth date and deceased date with unknown day, estimated month and accurate year.</p>\n <p>Note that "2004-06-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-06-08” but not "2004-06-00".</li>\n <li>A date accuracy indicator of "UEA" indicates that the day is unknown but month is an estimate and year is 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>"
]; #
fhir:Patient.birthDate [
fhir:value "2004-06-08"^^xsd:date;
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator" ];
fhir:Extension.valueCoding [
fhir:Coding.system [ fhir:value "https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1" ];
fhir:Coding.code [ fhir:value "UEA" ];
fhir:Coding.display [ fhir:value "Day is unknown, month is estimated, year is accurate" ] ] # this part of the extension states that date of birth is partially accurate ]
]; #
fhir:Patient.deceasedDateTime [
fhir:value "2004-06-08T13:42:00+10:00"^^xsd:dateTime;
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator" ];
fhir:Extension.valueCoding [
fhir:Coding.system [ fhir:value "https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1" ];
fhir:Coding.code [ fhir:value "UEA" ];
fhir:Coding.display [ fhir:value "Day is unknown, month is estimated, year is accurate" ] ] # this part of the extension states that deceased date is partially accurate ]
]. #
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.