@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/us/physical-activity/CarePlan/Scen1CarePlanV2> a fhir:CarePlan ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Scen1CarePlanV2"] ; # 
  fhir:text [
     fhir:status [ fhir:v "additional" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Jorin will continue with his exercise bike and will purchase a used one he can use at home, which should allow him to increase his weekly exercise to 150+ minutes. He will continue to monitor his blood pressure.</div>"
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "plan"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/us/core/CodeSystem/careplan-category"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "assess-plan" ]
     ] )
  ] [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/us/physical-activity/CodeSystem/pa-temporary-codes"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "PhysicalActivity" ]
     ] )
  ] ) ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/us/physical-activity/Patient/Scen1PatientKhatun> ;
     fhir:reference [ fhir:v "Patient/Scen1PatientKhatun" ] ;
     fhir:display [ fhir:v "Jorin Khatun" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2024-01-01"^^xsd:date ]
  ] ; # 
  fhir:author [
     fhir:link <http://hl7.org/fhir/us/physical-activity/PractitionerRole/Scen1RolePatel> ;
     fhir:reference [ fhir:v "PractitionerRole/Scen1RolePatel" ] ;
     fhir:display [ fhir:v "Dr. Rajesh Patel" ]
  ] ; # 
  fhir:goal ( [
     fhir:link <http://hl7.org/fhir/us/physical-activity/Goal/Scen1GoalV2> ;
     fhir:reference [ fhir:v "Goal/Scen1GoalV2" ]
  ] ) ; # 
  fhir:note ( [
     fhir:author [
       a fhir:Reference ;
       fhir:link <http://hl7.org/fhir/us/physical-activity/Practitioner/Scen1PractitionerPatel> ;
       fhir:reference [ fhir:v "Practitioner/Scen1PractitionerPatel" ] ;
       fhir:display [ fhir:v "Dr. Rajesh Patel" ]
     ] ;
     fhir:time [ fhir:v "2023-05-05"^^xsd:date ] ;
     fhir:text [ fhir:v "Jorin is adhering well and indicates he's motivated by increased energy playing with his children." ]
  ] ) . # 

<http://hl7.org/fhir/us/physical-activity/Patient/Scen1PatientKhatun> a fhir:us .

<http://hl7.org/fhir/us/physical-activity/PractitionerRole/Scen1RolePatel> a fhir:us .

<http://hl7.org/fhir/us/physical-activity/Goal/Scen1GoalV2> a fhir:us .

<http://hl7.org/fhir/us/physical-activity/Practitioner/Scen1PractitionerPatel> a fhir:us .

# -------------------------------------------------------------------------------------

