@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 -------------------------------------------------------------------

<http://fhir.org/guides/ohsuhypertensionig/Goal/example-BloodPressureGoal> a fhir:Goal ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-BloodPressureGoal"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Goal example-BloodPressureGoal</b></p><a name=\"example-BloodPressureGoal\"> </a><a name=\"hcexample-BloodPressureGoal\"> </a><p><b>lifecycleStatus</b>: Active</p><p><b>achievementStatus</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/goal-achievement in-progress}\">In Progress</span></p><p><b>description</b>: <span title=\"Codes:\">Example of an active Blood Pressure Goal of 135/85</span></p><p><b>subject</b>: <a href=\"Patient/12345\">Patient/12345</a></p><p><b>start</b>: 2021-07-12</p><blockquote><p><b>target</b></p><p><b>measure</b>: <span title=\"Codes:{http://loinc.org 8480-6}\">Systolic blood pressure</span></p><p><b>detail</b>: 135 mmHg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codemm[Hg] = 'mm[Hg]')</span></p></blockquote><blockquote><p><b>target</b></p><p><b>measure</b>: <span title=\"Codes:{http://loinc.org 8462-4}\">Diastolic blood pressure</span></p><p><b>detail</b>: 85 mmHg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codemm[Hg] = 'mm[Hg]')</span></p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:lifecycleStatus [ fhir:v "active"] ; # 
  fhir:achievementStatus [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/goal-achievement"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/goal-achievement>
       ] ;
       fhir:version [ fhir:v "4.0.1" ] ;
       fhir:code [ fhir:v "in-progress" ] ;
       fhir:display [ fhir:v "In Progress" ]
     ] )
  ] ; # 
  fhir:description [
     fhir:text [ fhir:v "Example of an active Blood Pressure Goal of 135/85" ]
  ] ; # 
  fhir:subject [
     fhir:l <http://fhir.org/guides/ohsuhypertensionig/Patient/12345> ;
     fhir:reference [ fhir:v "Patient/12345" ]
  ] ; # 
  fhir:start [
     a fhir:Date ;
     fhir:v "2021-07-12"^^xsd:date
  ] ; # 
  fhir:target ( [
     fhir:measure [
       fhir:coding ( [
         a loinc:8480-6 ;
         fhir:system [
           fhir:v "http://loinc.org"^^xsd:anyURI ;
           fhir:l <http://loinc.org>
         ] ;
         fhir:version [ fhir:v "2.68" ] ;
         fhir:code [ fhir:v "8480-6" ] ;
         fhir:display [ fhir:v "Systolic blood pressure" ]
       ] )
     ] ;
     fhir:detail [
       a fhir:Quantity ;
       fhir:value [ fhir:v "135"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mmHg" ] ;
       fhir:system [
         fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
         fhir:l <http://unitsofmeasure.org>
       ] ;
       fhir:code [ fhir:v "mm[Hg]" ]
     ]
  ] [
     fhir:measure [
       fhir:coding ( [
         a loinc:8462-4 ;
         fhir:system [
           fhir:v "http://loinc.org"^^xsd:anyURI ;
           fhir:l <http://loinc.org>
         ] ;
         fhir:version [ fhir:v "2.68" ] ;
         fhir:code [ fhir:v "8462-4" ] ;
         fhir:display [ fhir:v "Diastolic blood pressure" ]
       ] )
     ] ;
     fhir:detail [
       a fhir:Quantity ;
       fhir:value [ fhir:v "85"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mmHg" ] ;
       fhir:system [
         fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
         fhir:l <http://unitsofmeasure.org>
       ] ;
       fhir:code [ fhir:v "mm[Hg]" ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

