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 loinc: <http://loinc.org/rdf#> .
@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:DiagnosticReport;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "STD-TC-Lab-DiagnosticReport"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://cbsig.chai.gatech.edu/StructureDefinition/us-cbs-lab-diagnosticreport";
fhir:index 0;
fhir:link <http://cbsig.chai.gatech.edu/StructureDefinition/us-cbs-lab-diagnosticreport> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2><span title=\"Codes: {http://loinc.org 85069-3}\">Lab test method [Type]</span> (<span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v2-0074 LAB}\">Laboratory</span>) </h2><table class=\"grid\"><tr><td>Subject</td><td><b></b> ?? 1994-03-02 ( Local Record ID: STD_TC05)</td></tr><tr><td>Reported</td><td>2020-12-31T19:00:00-05:00</td></tr></table><p><b>Report Details</b></p><table class=\"grid\"><tr><td><b>Code</b></td><td><b>Value</b></td><td><b>When For</b></td></tr><tr><td><a href=\"Observation-STD-TC-Lab-Observation.html\"><span title=\"Codes: {http://loinc.org 698-1}\">Neisseria gonorrhoeae [Presence] in Specimen by Organism specific culture</span></a></td><td><span title=\"Codes: {http://snomed.info/sct 10828004}\">Positive</span></td><td>2014-02-26</td></tr></table></div>"
];
fhir:DiagnosticReport.status [ fhir:value "final"];
fhir:DiagnosticReport.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0074" ];
fhir:Coding.code [ fhir:value "LAB" ] ]
];
fhir:DiagnosticReport.code [
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:85069-3;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "85069-3" ] ]
];
fhir:DiagnosticReport.subject [
fhir:Reference.reference [ fhir:value "Patient/STD-TC-Patient" ]
];
fhir:DiagnosticReport.issued [ fhir:value "2021-01-01T00:00:00Z"^^xsd:dateTime];
fhir:DiagnosticReport.specimen [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Specimen/STD-TC-Specimen" ]
];
fhir:DiagnosticReport.result [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Observation/STD-TC-Lab-Observation" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.