QI-Core Implementation Guide - This is the current published version.. See the Directory of published versions
Formats: Narrative, XML, JSON, Turtle
Raw ttl
@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 "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example</p><p><b>status</b>: final</p><p><b>category</b>: Laboratory <span style=\"background: LightGoldenRodYellow\">(Details : {http://terminology.hl7.org/CodeSystem/v2-0074 code 'LAB' = 'Laboratory', given as 'Laboratory'})</span></p><p><b>code</b>: Complete blood count (hemogram) panel - Blood by Automated count <span style=\"background: LightGoldenRodYellow\">(Details : {LOINC code '58410-2' = 'Complete blood count (hemogram) panel - Blood by Automated count', given as 'Complete blood count (hemogram) panel - Blood by Automated count'})</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Peter Chalmers. Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>effective</b>: Jul 5, 2005 12:00:00 AM</p><p><b>issued</b>: Jul 6, 2005 12:45:33 AM</p><p><b>performer</b>: <a href=\"Organization-example.html\">Generated Summary: id: example; ??; active; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/organization-type team}\">Organizational team</span>; name: Health Level Seven International; ph: (+1) 734-677-7777, fax: (+1) 734-677-6622, hq@HL7.org</a></p><p><b>result</b>: <a href=\"Observation-example.html\">Generated Summary: id: example; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/observation-category vital-signs}\">Vital Signs</span>; <span title=\"Codes: {http://loinc.org 30350-3}\">Hemoglobin [Mass/volume] in Venous blood</span>; effective: Apr 2, 2013 9:30:10 AM --> Apr 5, 2013 9:30:10 AM; issued: Apr 3, 2013 2:30:10 PM; 7.2 g/dl; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v2-0078 L}\">Below low normal</span>; <span title=\"Codes: {http://snomed.info/sct 308046002}\">Superficial forearm vein</span>; <span title=\"Codes: {http://snomed.info/sct 120220003}\">Injection to forearm</span></a></p></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:Coding.display [ fhir:value "Laboratory" ] ] ]; fhir:DiagnosticReport.code [ fhir:CodeableConcept.coding [ fhir:index 0; a loinc:58410-2; fhir:Coding.system [ fhir:value "http://loinc.org" ]; fhir:Coding.code [ fhir:value "58410-2" ]; fhir:Coding.display [ fhir:value "Complete blood count (hemogram) panel - Blood by Automated count" ] ] ]; fhir:DiagnosticReport.subject [ fhir:Reference.reference [ fhir:value "Patient/example" ]; fhir:Reference.display [ fhir:value "Peter Chalmers" ] ]; fhir:DiagnosticReport.effectiveDateTime [ fhir:value "2005-07-05"^^xsd:date]; fhir:DiagnosticReport.issued [ fhir:value "2005-07-06T11:45:33+11:00"^^xsd:dateTime]; fhir:DiagnosticReport.performer [ fhir:index 0; fhir:Reference.reference [ fhir:value "Organization/example" ] ]; fhir:DiagnosticReport.result [ fhir:index 0; fhir:Reference.reference [ fhir:value "Observation/example" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.