Ophthalmology Implementation Guide
0.2.0 - CI Build

Ophthalmology Implementation Guide - Local Development build (v0.2.0). See the Directory of published versions

: - TTL Representation

Raw ttl | Download


@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Observation;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "01e0df2d-f6fa-4761-8fb7-c22f730ade55"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/StructureDefinition/ophthal-iop-observation";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/StructureDefinition/ophthal-iop-observation>     ]
  ];
  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><h3>Ids</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><h3>Meta</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p></p><p><b>category</b>: <span title=\"Codes: {http://hl7.org/fhir/observation-category exam}\">Exam</span></p><p><b>code</b>: <span title=\"Codes: {http://snomed.info/sct 41633001}\">Intraocular Pressure</span></p><p><b>subject</b>: <a href=\"Patient/5812adb4-ef6d-4166-b8e1-0591525fb673\">Patient/5812adb4-ef6d-4166-b8e1-0591525fb673</a></p><p><b>issued</b>: 27 Jun. 2013, 11:04:20 pm</p><p><b>device</b>: <span></span></p></div>"
  ];
  fhir:Observation.status [ fhir:value "final"];
  fhir:Observation.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/observation-category" ];
       fhir:Coding.code [ fhir:value "exam" ];
       fhir:Coding.display [ fhir:value "Exam" ]     ]
  ];
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:41633001;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "41633001" ];
       fhir:Coding.display [ fhir:value "Intraocular pressure of Eye" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Intraocular Pressure" ]
  ];
  fhir:Observation.subject [
     fhir:Reference.reference [ fhir:value "Patient/5812adb4-ef6d-4166-b8e1-0591525fb673" ]
  ];
  fhir:Observation.issued [ fhir:value "2013-06-27T17:04:20.643+04:00"^^xsd:dateTime];
  fhir:Observation.device [].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.