This page is part of the HL7 FHIR® Implementation Guide: Ophthalmology Retinal, Release 1 (v0.1.0: STU1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions
@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 "ophthal-patient-example-0"];
fhir:Resource.meta [
fhir:Meta.versionId [ fhir:value "1" ];
fhir:Meta.lastUpdated [ fhir:value "2021-01-25T14:36:03Z"^^xsd:dateTime ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>identifier</b>: Medical Record Number: 02134005</p><p><b>active</b>: true</p><p><b>name</b>: Eve Bill</p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1958-12-24</p><p><b>address</b>: home</p></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 "MR" ];
fhir:Coding.display [ fhir:value "Medical Record Number" ] ];
fhir:CodeableConcept.text [ fhir:value "Medical Record Number" ] ];
fhir:Identifier.system [ fhir:value "http://fhir.medisoft.com" ];
fhir:Identifier.value [ fhir:value "02134005" ]
];
fhir:Patient.active [ fhir:value "true"^^xsd:boolean];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.text [ fhir:value "Eve Bill" ];
fhir:HumanName.family [ fhir:value "Bill" ];
fhir:HumanName.given [
fhir:value "Eve";
fhir:index 0 ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "1958-12-24"^^xsd:date];
fhir:Patient.address [
fhir:index 0;
fhir:Address.text [ fhir:value "home" ];
fhir:Address.line [
fhir:value "31 Pacquola Street";
fhir:index 0 ];
fhir:Address.city [ fhir:value "Blacktown" ];
fhir:Address.state [ fhir:value "NSW" ];
fhir:Address.postalCode [ fhir:value "2148" ];
fhir:Address.country [ fhir:value "Australia" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.