This page is part of the Pharmacist Care Plan FHIR IG (v1.0.0: STU 1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). 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 "phcp-patient-example"];
fhir:Resource.meta [
fhir:Meta.versionId [ fhir:value "3" ];
fhir:Meta.lastUpdated [ fhir:value "2020-09-02T20:26:03.581+00:00"^^xsd:dateTime ];
fhir:Meta.source [ fhir:value "#vzzApV891IBknHPP" ];
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <div class=\"hapiHeaderText\">Amy V. \n <b>SHAW </b>\n </div>\n <table class=\"hapiPropertyTable\">\n <tbody>\n <tr>\n <td>Identifier</td>\n <td>1032702</td>\n </tr>\n <tr>\n <td>Address</td>\n <td>\n <span>49 Meadow St </span>\n <br/>\n <span>Mounds </span>\n <span>OK </span>\n <span>US </span>\n </td>\n </tr>\n <tr>\n <td>Date of birth</td>\n <td>\n <span>20 February 2007</span>\n </td>\n </tr>\n </tbody>\n </table>\n </div>"
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.use [ fhir:value "usual" ];
fhir:Identifier.system [ fhir:value "http://hospital.smarthealthit.org" ];
fhir:Identifier.value [ fhir:value "1032702" ]
];
fhir:Patient.active [ fhir:value "true"^^xsd:boolean];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "Shaw" ];
fhir:HumanName.given [
fhir:value "Amy";
fhir:index 0 ], [
fhir:value "V.";
fhir:index 1 ]
];
fhir:Patient.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "555-555-5555" ];
fhir:ContactPoint.use [ fhir:value "home" ]
], [
fhir:index 1;
fhir:ContactPoint.system [ fhir:value "email" ];
fhir:ContactPoint.value [ fhir:value "amy.shaw@example.com" ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "2007-02-20"^^xsd:date];
fhir:Patient.address [
fhir:index 0;
fhir:Address.line [
fhir:value "49 Meadow St";
fhir:index 0 ];
fhir:Address.city [ fhir:value "Mounds" ];
fhir:Address.state [ fhir:value "OK" ];
fhir:Address.postalCode [ fhir:value "74047" ];
fhir:Address.country [ fhir:value "US" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.