AU Base Implementation Guide
6.0.0-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.0-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 AAA - 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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 "DateAccuracyIndicatorAAAexample0"] ; # 
  fhir:text [
fhir:status [ fhir:v "additional" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <p>This example demonstrates a birth date and deceased date with an accurate day, month and year.</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 \"1956-08-23\".</li>\n                <li>A date accuracy indicator of \"AAA\" indicates all components are accurate.</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>"^^rdf:XMLLiteral
  ] ; # 
  fhir:birthDate [
fhir:v "1956-08-23"^^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 "AAA" ] ;
fhir:display [ fhir:v "Day, month and year are accurate" ]       ] #  this part of the extension states that date of birth is fully accurate      ] )
  ] ; # 
  fhir:deceased [
a fhir:dateTime ;
fhir:v "1956-08-23T13: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 "AAA" ] ;
fhir:display [ fhir:v "Day, month and year are accurate" ]       ] #  this part of the extension states that deceased date is fully accurate      ] )
  ] . #