Estonian Base Implementation Guide
1.0.0 - ballot
Estonian Base Implementation Guide - Local Development build (v1.0.0). 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Observation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "BloodPressure"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://fhir.ee/StructureDefinition/ee-observation"^^xsd:anyURI ;
fhir:link <https://fhir.ee/StructureDefinition/ee-observation> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Observation</b><a name=\"BloodPressure\"> </a></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 Observation "BloodPressure" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-ee-observation.html\">EEBase Observation</a></p></div><p><b>status</b>: final</p><p><b>code</b>: Blood Pressure <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#75367002)</span></p><p><b>subject</b>: <a href=\"Patient-pat1.html\">Patient/pat1</a> " METS"</p><p><b>effective</b>: 2021-11-23</p><p><b>performer</b>: <a href=\"Organization-rh.html\">Organization/rh</a> "Rakvere Haigla"</p><blockquote><p><b>component</b></p><p><b>code</b>: Systolic Blood Pressure <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#271649006)</span></p><p><b>value</b>: 120 mmHg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code mm[Hg] = 'mm[Hg]')</span></p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: Diastolic Blood Pressure <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#271650006)</span></p><p><b>value</b>: 80 mmHg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code mm[Hg] = 'mm[Hg]')</span></p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: Body position for blood pressure measurement <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#424724000)</span></p><p><b>value</b>: Sitting position <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#33586001)</span></p></blockquote></div>"
] ; #
fhir:status [ fhir:v "final"] ; #
fhir:code [
( fhir:coding [
a sct:75367002 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "75367002" ] ;
fhir:display [ fhir:v "Blood Pressure" ] ] )
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/pat1" ]
] ; #
fhir:effective [ fhir:v "2021-11-23"^^xsd:date] ; #
fhir:performer ( [
fhir:reference [ fhir:v "Organization/rh" ]
] ) ; #
fhir:component ( [
fhir:code [
( fhir:coding [
a sct:271649006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "271649006" ] ;
fhir:display [ fhir:v "Systolic Blood Pressure" ] ] ) ] ;
fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v "120"^^xsd:decimal ] ;
fhir:unit [ fhir:v "mmHg" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "mm[Hg]" ] ]
] [
fhir:code [
( fhir:coding [
a sct:271650006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "271650006" ] ;
fhir:display [ fhir:v "Diastolic Blood Pressure" ] ] ) ] ;
fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v "80"^^xsd:decimal ] ;
fhir:unit [ fhir:v "mmHg" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "mm[Hg]" ] ]
] [
fhir:code [
( fhir:coding [
a sct:424724000 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "424724000" ] ;
fhir:display [ fhir:v "Body position for blood pressure measurement" ] ] ) ] ;
fhir:value [
a fhir:CodeableConcept ;
( fhir:coding [
a sct:33586001 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "33586001" ] ;
fhir:display [ fhir:v "Sitting position" ] ] ) ]
] ) . #
IG © 2023+ HL7 Estonia. Package hl7.fhir.ee.base#1.0.0 based on FHIR 5.0.0. Generated 2023-05-29
Links: Table of Contents |
QA Report