AU Core Implementation Guide 0.1.0-draft - Draft
Publication Build: This will be filled in by the publication tooling
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 "italia-sofia"]; # fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Sofia Italia </b> female, DoB: 1989-05-07 ( Passport Number: IT1111111)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Other Ids (see the one above)\">Other Id:</td><td colspan=\"3\">Medical Record Number: 2338111</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail:</td><td colspan=\"3\">Piazza del Colosseo Rome Lazio 00184 ITA (HOME)</td></tr></table></div>" ]; # fhir:Patient.identifier [ fhir:index 0; fhir:Identifier.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ]; fhir:Coding.code [ fhir:value "PPN" ] ]; fhir:CodeableConcept.text [ fhir:value "Passport Number" ] ]; fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/passport-ITA" ]; fhir:Identifier.value [ fhir:value "IT1111111" ] ], [ fhir:index 1; fhir:Identifier.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ]; fhir:Coding.code [ fhir:value "MR" ]; fhir:Coding.display [ fhir:value "Medical record number" ] ]; fhir:CodeableConcept.text [ fhir:value "Medical Record Number" ] ]; fhir:Identifier.system [ fhir:value "http://ns.electronichealth.net.au/id/hpio-scoped/medicalrecord/1.0/8003626566699734" ]; fhir:Identifier.value [ fhir:value "2338111" ]; fhir:Identifier.assigner [ fhir:Reference.display [ fhir:value "Large Metropolitan Hospital" ] ] ]; # fhir:Patient.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Italia" ]; fhir:HumanName.given [ fhir:value "Sofia"; fhir:index 0 ]; fhir:HumanName.prefix [ fhir:value "Ms"; fhir:index 0 ] ]; # fhir:Patient.gender [ fhir:value "female"]; # fhir:Patient.birthDate [ fhir:value "1989-05-07"^^xsd:date]; # fhir:Patient.address [ fhir:index 0; fhir:Address.use [ fhir:value "home" ]; fhir:Address.line [ fhir:value "Piazza del Colosseo"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Rome" ]; fhir:Address.state [ fhir:value "Lazio" ]; fhir:Address.postalCode [ fhir:value "00184" ]; fhir:Address.country [ fhir:value "ITA" ] ]. # # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.