HIV Case Reporting and Monitoring - Local Development build (v0.2.0). 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 "HIVPatientExample"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://openhie.org/fhir/hiv-casereporting/StructureDefinition/hiv-patient";
fhir:index 0;
fhir:link <http://openhie.org/fhir/hiv-casereporting/StructureDefinition/hiv-patient> ]
];
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>Jane Smith (OFFICIAL)</b> female, DoB: 1986-06-04 ( id: ART1234567)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td>true</td><td style=\"background-color: #f3f5da\" title=\"Known Marital status of Patient\">Marital Status:</td><td colspan=\"3\"><span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-MaritalStatus M}\">Married</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Other Ids (see the one above)\">Other Ids:</td><td colspan=\"3\"><ul><li>id: PASSPORT1234567</li><li>id: NAT1234567</li><li>MR: 100007G</li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li><a href=\"tel:+27825556666\">+27825556666</a></li><li>Cape Town Western Province South Africa </li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>Managing Organization: <a href=\"Organization-HIVOrganizationExample.html\">Organization/HIVOrganizationExample</a> \"HIV Organization\"</li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Key population\"><a href=\"StructureDefinition-key-population.html\">Key population:</a></td><td colspan=\"3\"><ul><li><span title=\"Codes: \">transgender</span></li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"The gender the patient identifies with. The Patient's gender identity is used as guidance (e.g. for staff) about how to interact with the patient.\"><a href=\"http://hl7.org/fhir/R4/extension-patient-genderidentity.html\">genderIdentity:</a></td><td colspan=\"3\"><ul><li><span title=\"Codes: \">male</span></li></ul></td></tr></table></div>"
];
fhir:DomainResource.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/patient-genderIdentity" ];
fhir:Extension.valueCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.code [ fhir:value "male" ] ] ]
], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://openhie.org/fhir/hiv-casereporting/StructureDefinition/key-population" ];
fhir:Extension.valueCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.code [ fhir:value "transgender" ] ] ]
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "http://openhie.org/fhir/hiv-casereporting/identifier/art" ];
fhir:Identifier.value [ fhir:value "ART1234567" ]
], [
fhir:index 1;
fhir:Identifier.system [ fhir:value "http://openhie.org/fhir/hiv-casereporting/identifier/passport" ];
fhir:Identifier.value [ fhir:value "PASSPORT1234567" ]
], [
fhir:index 2;
fhir:Identifier.system [ fhir:value "http://openhie.org/fhir/hiv-casereporting/identifier/nid" ];
fhir:Identifier.value [ fhir:value "NAT1234567" ]
], [
fhir:index 3;
fhir:Identifier.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.code [ fhir:value "MR" ] ] ];
fhir:Identifier.system [ fhir:value "http://openhie.org/fhir/hiv-casereporting/OpenMRSID" ];
fhir:Identifier.value [ fhir:value "100007G" ]
];
fhir:Patient.active [ fhir:value "true"^^xsd:boolean];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.use [ fhir:value "official" ];
fhir:HumanName.family [ fhir:value "Smith" ];
fhir:HumanName.given [
fhir:value "Jane";
fhir:index 0 ]
];
fhir:Patient.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "+27825556666" ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "1986-06-04"^^xsd:date];
fhir:Patient.address [
fhir:index 0;
fhir:Address.city [ fhir:value "Cape Town" ];
fhir:Address.district [ fhir:value "City of Cape Town" ];
fhir:Address.state [ fhir:value "Western Province" ];
fhir:Address.country [ fhir:value "South Africa" ]
];
fhir:Patient.maritalStatus [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus" ];
fhir:Coding.code [ fhir:value "M" ] ]
];
fhir:Patient.managingOrganization [
fhir:Reference.reference [ fhir:value "Organization/HIVOrganizationExample" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.
IG © 2019+ OpenHIE. Package openhie.fhir.hiv#0.2.0 based on FHIR 4.0.1. Generated 2022-10-06
Links: Table of Contents |
QA Report |
Version History |
|