Patient Identifier Cross-referencing for mobile (PIXm)
3.0.2 - Trial-Implementation
This page is part of the IHE Patient Identifier Cross-referencing for Mobile (v3.0.2: Trial Implementation) based on FHIR R4. This is the current published version. 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 "Patient-MaidenAlice-Red"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "https://profiles.ihe.net/ITI/PIXm/StructureDefinition/IHE.PIXm.Patient";
fhir:index 0;
fhir:link <https://profiles.ihe.net/ITI/PIXm/StructureDefinition/IHE.PIXm.Patient> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>ALICE MOHR </b> (no stated gender) 1958-01-30 ( id: IHERED-m94)</p></div>"
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "urn:oid:1.3.6.1.4.1.21367.13.20.1000" ];
fhir:Identifier.value [ fhir:value "IHERED-m94" ]
];
fhir:Patient.active [ fhir:value "true"^^xsd:boolean];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "MOHR" ];
fhir:HumanName.given [
fhir:value "ALICE";
fhir:index 0 ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "1958-01-30"^^xsd:date].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.