IL Core Implementation Guide 0.18.0 - draft
Publication Build: This will be filled in by the publication tooling
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> . @prefix loinc: <https://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:Observation ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "observation-VS-cuff-size"] ; # fhir:meta [ ( fhir:profile [ fhir:v "http://fhir.health.gov.il/StructureDefinition/il-core-vital-signs"^^xsd:anyURI ; fhir:link <http://fhir.health.gov.il/StructureDefinition/il-core-vital-signs> ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Observation of Hight - 1.72 Meters</div>" ] ; # fhir:status [ fhir:v "final"] ; # fhir:category ( [ ( fhir:coding [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ] ; fhir:code [ fhir:v "vital-signs" ] ; fhir:display [ fhir:v "Vital Signs" ] ] ) ] ) ; # fhir:code [ ( fhir:coding [ a loinc:9843-4 ; fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ; fhir:code [ fhir:v "9843-4" ] ; fhir:display [ fhir:v "Head Occipital-frontal circumference" ] ] ) ] ; # fhir:subject [ fhir:reference [ fhir:v "Patient/patient-with-israeli-id" ] ] ; # fhir:effective [ fhir:v "2021-02-20"^^xsd:date] ; # fhir:performer ( [ fhir:reference [ fhir:v "Practitioner/practitioner-nurse" ] ] ) ; # fhir:value [ a fhir:Quantity ; fhir:value [ fhir:v "34.2"^^xsd:decimal ] ; fhir:unit [ fhir:v "cm" ] ; fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ; fhir:code [ fhir:v "cm" ] ] ; # fhir:referenceRange ( [ fhir:low [ fhir:value [ fhir:v "30"^^xsd:decimal ] ; fhir:unit [ fhir:v "cm" ] ; fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ; fhir:code [ fhir:v "cm" ] ] ; fhir:high [ fhir:value [ fhir:v "40"^^xsd:decimal ] ; fhir:unit [ fhir:v "cm" ] ; fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ; fhir:code [ fhir:v "cm" ] ] ] ) . #