@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://hl7.fi/fhir/finnish-base-profiles/Observation/bloodpressure-min> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "bloodpressure-min"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://phr.kanta.fi/StructureDefinition/fiphr-sd-bloodpressure"^^xsd:anyURI ;
       fhir:link <http://phr.kanta.fi/StructureDefinition/fiphr-sd-bloodpressure>
     ] )
  ] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Code: Blood pressure (85354-9)<br/>Time: 20.11.2017 11:46<br/>Result: Systolic blood pressure (8480-6): 95 mm[Hg], Diastolic blood pressure (8462-4): 65 mm[Hg]</div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "urn:ietf:rfc:3986"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "urn:uuid:3ca3ffc6-234e-481c-b0f3-37c05e14c8e2" ]
  ] ) ; # 
  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:code [
     fhir:coding ( [
       a loinc:85354-9 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "85354-9" ] ;
       fhir:display [ fhir:v "Blood pressure panel with all children optional" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:link <https://hl7.fi/fhir/finnish-base-profiles/Patient/25a53703-27f9-4354-8f1b-a8b2f8f3ee86> ;
     fhir:reference [ fhir:v "Patient/25a53703-27f9-4354-8f1b-a8b2f8f3ee86" ]
  ] ; # 
  fhir:effective [
     a fhir:dateTime ;
     fhir:v "2017-11-20T11:46:00+02:00"^^xsd:dateTime
  ] ; # 
  fhir:issued [ fhir:v "2017-11-20T11:46:00+02:00"^^xsd:dateTime] ; # 
  fhir:performer ( [
     fhir:link <https://hl7.fi/fhir/finnish-base-profiles/Patient/25a53703-27f9-4354-8f1b-a8b2f8f3ee86> ;
     fhir:reference [ fhir:v "Patient/25a53703-27f9-4354-8f1b-a8b2f8f3ee86" ]
  ] ) ; # 
  fhir:component ( [
     fhir:code [
       fhir:coding ( [
         a loinc:8480-6 ;
         fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "8480-6" ] ;
         fhir:display [ fhir:v "Systolic blood pressure" ]
       ] )
     ] ;
     fhir:value [
       a fhir:Quantity ;
       fhir:value [ fhir:v "95"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mm[Hg]" ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "mm[Hg]" ]
     ]
  ] [
     fhir:code [
       fhir:coding ( [
         a loinc:8462-4 ;
         fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "8462-4" ] ;
         fhir:display [ fhir:v "Diastolic blood pressure" ]
       ] )
     ] ;
     fhir:value [
       a fhir:Quantity ;
       fhir:value [ fhir:v "65"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mm[Hg]" ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "mm[Hg]" ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

