Australian Base Implementation Guide (AU Base 1)

This page is part of the Australian Base IG (v1.0.2: AU Base 1 on STU3) based on FHIR R3. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

Example: Patient-DateAccuracyIndicatorAAAexample0

Formats: Narrative,XML, JSON, Turtle

Raw ttl

@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 "DateAccuracyIndicatorAAAexample0"];
  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 how a birth or deceased date with an accurate day, month and year would be represented.</p>\n            <p>Note that this is a valid FHIR date.</p>\n            <p>Details include:</p>\n            <ul>\n                <li>An accurate FHIR date example for birth or deceased date is &quot;1956-08-23&quot;.</li>\n                <li>A date accuracy indicator of &quot;AAA&quot; indicates all components are accurate.</li>\n                <li>When a code value contains &quot;A&quot;, 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 "1956-08-23"^^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 "AAA" ];
         fhir:Coding.display [ fhir:value "Day, month and year are accurate" ]       ]     ]
  ];
  fhir:Patient.deceasedDateTime [
     fhir:value "1956-08-23T13: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 "AAA" ];
         fhir:Coding.display [ fhir:value "Day, month and year are accurate" ]       ]     ]
  ].

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

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.