AU Base Implementation Guide
6.0.1-ci-build - CI Build Australia flag

AU Base Implementation Guide, published by HL7 Australia. This guide is not an authorized publication; it is the continuous build for version 6.0.1-ci-build built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7au/au-fhir-base/ and changes regularly. See the Directory of published versions

: Patient - with Birth Date Accuracy Indicator of UUU - TTL Representation

Page standards status: Informative

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 -------------------------------------------------------------------

<http://hl7.org/fhir/Patient/DateAccuracyIndicatorUUUexample4> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "DateAccuracyIndicatorUUUexample4"] ;
  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 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:Patient.birthDate [
     fhir:value "2004-12-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 "UUU" ] ;
         fhir:Coding.display [ fhir:value "Day, month and year are unknown" ]
       ]
     ]
  ] ;
  fhir:Patient.deceasedDateTime [
     fhir:value "2004-12-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 "UUU" ] ;
         fhir:Coding.display [ fhir:value "Day, month and year are unknown" ]
       ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Patient/DateAccuracyIndicatorUUUexample4.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Patient/DateAccuracyIndicatorUUUexample4.ttl> .