This page is part of the Da Vinci Patient Cost Transparency Implementation Guide (v0.1.0: STU 1 Draft) 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 "patient1001"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/davinci-pct/StructureDefinition/davinci-pct-patient";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/davinci-pct/StructureDefinition/davinci-pct-patient> ]
];
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><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"patient1001\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-davinci-pct-patient.html\">PCT Patient</a></p></div><p><b>identifier</b>: Member Number: 12345, Employee number: 667788</p><p><b>name</b>: Eve Betterhalf</p><p><b>telecom</b>: ph: 781-949-4949(MOBILE)</p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1955-07-23</p><p><b>address</b>: 222 Burlington Road, Bedford MA 01730</p><p><b>maritalStatus</b>: unmarried <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/2.1.0/CodeSystem-v3-MaritalStatus.html\">MaritalStatus</a>#U)</span></p><h3>Communications</h3><table class=\"grid\"><tr><td>-</td><td><b>Language</b></td><td><b>Preferred</b></td></tr><tr><td>*</td><td>English (United States) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/2.1.0/CodeSystem-v3-ietf3066.html\">Tags for the Identification of Languages</a>#en-US)</span></td><td>true</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 "MB" ];
fhir:Coding.display [ fhir:value "Member Number" ] ] ];
fhir:Identifier.system [ fhir:value "http://example.com/identifiers/member" ];
fhir:Identifier.value [ fhir:value "12345" ]
], [
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 "EI" ];
fhir:Coding.display [ fhir:value "Employee number" ] ] ];
fhir:Identifier.system [ fhir:value "http://example.com/identifiers/employee" ];
fhir:Identifier.value [ fhir:value "667788" ]
];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.text [ fhir:value "Eve Betterhalf" ];
fhir:HumanName.family [ fhir:value "Betterhalf" ];
fhir:HumanName.given [
fhir:value "Eve";
fhir:index 0 ]
];
fhir:Patient.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "781-949-4949" ];
fhir:ContactPoint.use [ fhir:value "mobile" ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "1955-07-23"^^xsd:date];
fhir:Patient.address [
fhir:index 0;
fhir:Address.text [ fhir:value "222 Burlington Road, Bedford MA 01730" ]
];
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 "U" ];
fhir:Coding.display [ fhir:value "unmarried" ] ]
];
fhir:Patient.communication [
fhir:index 0;
fhir:Patient.communication.language [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "urn:ietf:bcp:47" ];
fhir:Coding.code [ fhir:value "en-US" ];
fhir:Coding.display [ fhir:value "English (United States)" ] ] ];
fhir:Patient.communication.preferred [ fhir:value "true"^^xsd:boolean ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.