AU Core Implementation Guide
0.2.0-preview - QA Preview Australia flag

Publication Build: This will be filled in by the publication tooling

: Patient - Baby patient - 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 -------------------------------------------------------------------

 a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "baby-smith-john"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "http://hl7.org.au/fhir/core/StructureDefinition/au-core-patient"^^xsd:anyURI ;
fhir:link <http://hl7.org.au/fhir/core/StructureDefinition/au-core-patient>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Baby of Emma SMITH (TEMP)</b> male, DoB: 2022-09-14 ( Medical record number: 7746677 (use: TEMP))</p><hr/></div>"
  ] ; # 
  fhir:identifier ( [
fhir:use [ fhir:v "temp" ] ;
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "MR" ]       ] )     ] ;
fhir:system [ fhir:v "http://ns.electronichealth.net.au/id/abn-scoped/medicalrecord/1.0/51824753003"^^xsd:anyURI ] ;
fhir:value [ fhir:v "7746677" ] ;
fhir:assigner [
fhir:display [ fhir:v "QLD Hospital" ]     ]
  ] ) ; # baby Patient instance 
  fhir:name ( [
fhir:use [ fhir:v "temp" ] ;
fhir:family [ fhir:v "SMITH" ] ;
    ( fhir:given [ fhir:v "Baby of Emma" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [
fhir:v "2022-09-14"^^xsd:date ;
    ( fhir:extension [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/patient-birthTime"^^xsd:anyURI ] ;
fhir:value [ fhir:v "2022-09-14T14:35:45-05:00"^^xsd:dateTime ]     ] )
  ] . #