This page is part of the US Core (v4.0.0: STU4) based on FHIR R4. The current version which supercedes this version is 5.0.1. 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:Encounter;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example-1"];
fhir:Resource.meta [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-name" ];
fhir:Extension.valueString [ fhir:value "Encounter 1 Example" ] ], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
fhir:Extension.valueMarkdown [ fhir:value "This is a encounter 1 example for the *US Core Encounter Profile*." ] ];
fhir:Meta.lastUpdated [ fhir:value "2017-05-26T11:56:57.250-04:00"^^xsd:dateTime ];
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter> ]
];
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>status</b>: finished</p><p><b>class</b>: <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode AMB}\">ambulatory</span></p><p><b>type</b>: <span title=\"Codes: {http://www.ama-assn.org/go/cpt 99201}\">Office Visit</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Generated Summary: Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; Phone: 555-555-5555, amy.shaw@example.com; gender: female; birthDate: 1987-02-20</a></p><p><b>period</b>: Nov 1, 2015 10:00:14 PM --> Nov 1, 2015 11:00:14 PM</p></div>"
];
fhir:Encounter.status [ fhir:value "finished"];
fhir:Encounter.class [
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
fhir:Coding.code [ fhir:value "AMB" ];
fhir:Coding.display [ fhir:value "ambulatory" ]
];
fhir:Encounter.type [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://www.ama-assn.org/go/cpt" ];
fhir:Coding.code [ fhir:value "99201" ] ];
fhir:CodeableConcept.text [ fhir:value "Office Visit" ]
];
fhir:Encounter.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:Encounter.period [
fhir:Period.start [ fhir:value "2015-11-01T17:00:14-05:00"^^xsd:dateTime ];
fhir:Period.end [ fhir:value "2015-11-01T18:00:14-05:00"^^xsd:dateTime ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.