Case Based Surveillance Implementation Guide
0.2.1 - ci-build
Case Based Surveillance Implementation Guide - Local Development build (v0.2.1). 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 "HAICA-TC-Hospitalization"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://cbsig.chai.gatech.edu/StructureDefinition/us-cbs-hospitalization";
fhir:index 0;
fhir:link <http://cbsig.chai.gatech.edu/StructureDefinition/us-cbs-hospitalization> ]
];
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 \"HAICA-TC-Hospitalization\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-us-cbs-hospitalization.html\">US Case Based Surveillance Hospitalization Encounter Profile</a></p></div><p><b>status</b>: unknown</p><p><b>class</b>: inpatient encounter (Details: http://terminology.hl7.org/CodeSystem/v3-ActCode code IMP = 'inpatient encounter', stated as 'inpatient encounter')</p><p><b>type</b>: Inpatient Hospital <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.0.0/CodeSystem-CPT.html\">Current Procedural Terminology (CPT®)</a>#42628595)</span></p><p><b>subject</b>: <a href=\"Patient-HAICA-TC-Patient.html\">Patient/HAICA-TC-Patient: HAI-CA TC Example Patient</a> \"\"</p><p><b>period</b>: 2018-11-24 --> (ongoing)</p><p><b>reasonReference</b>: <a href=\"Condition-HAICA-TC-Condition.html\">Condition/HAICA-TC-Condition</a></p><h3>Locations</h3><table class=\"grid\"><tr><td>-</td><td><b>Location</b></td></tr><tr><td>*</td><td><span>: Masked Location</span></td></tr></table></div>"
];
fhir:Encounter.status [ fhir:value "unknown"];
fhir:Encounter.class [
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
fhir:Coding.code [ fhir:value "IMP" ];
fhir:Coding.display [ fhir:value "inpatient encounter" ]
];
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 "42628595" ];
fhir:Coding.display [ fhir:value "Inpatient Hospital" ] ]
];
fhir:Encounter.subject [
fhir:Reference.reference [ fhir:value "Patient/HAICA-TC-Patient" ];
fhir:Reference.display [ fhir:value "HAI-CA TC Example Patient" ]
];
fhir:Encounter.period [
fhir:Period.start [ fhir:value "2018-11-24"^^xsd:date ]
];
fhir:Encounter.reasonReference [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Condition/HAICA-TC-Condition" ]
];
fhir:Encounter.location [
fhir:index 0;
fhir:Encounter.location.location [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/data-absent-reason" ];
fhir:Extension.valueCode [ fhir:value "masked" ] ];
fhir:Reference.display [ fhir:value "Masked Location" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.