@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Immunization; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example1"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/au-immunization"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative: Immunization

Resource Immunization \"example1\"

Profile: AU Base Immunisation

status: completed

vaccineCode: Infanrix-Hep B (unknown#IFXB)

patient: Patient/example2: Sally GRANT \" GRANT\"

occurrence: 2018-02-27

primarySource: true

" ]; fhir:Immunization.status [ fhir:value "completed"]; fhir:Immunization.vaccineCode [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "urn:oid:1.2.36.1.2001.1005.17" ]; fhir:Coding.code [ fhir:value "IFXB" ] ]; fhir:CodeableConcept.text [ fhir:value "Infanrix-Hep B" ] ]; fhir:Immunization.patient [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example2" ]; fhir:Reference.display [ fhir:value "Sally GRANT" ] ]; fhir:Immunization.occurrenceDateTime [ fhir:value "2018-02-27"^^xsd:date]; fhir:Immunization.primarySource [ fhir:value "true"^^xsd:boolean] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------