@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/Scen4CarePlanV2> a fhir:CarePlan ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Scen4CarePlanV2"] ; # 
  fhir:text [
     fhir:status [ fhir:v "additional" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Ms. Scarborough will use her home weights and alternate between lower-body and upper-body on week-days each morning for 15 minutes after waking and 30 minutes before dinner.</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/Scen4PatientScarborough> ;
     fhir:reference [ fhir:v "Patient/Scen4PatientScarborough" ] ;
     fhir:display [ fhir:v "Ms. Scarborough" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2024-03-30"^^xsd:date ]
  ] ; # 
  fhir:author [
     fhir:link <http://hl7.org/fhir/us/physical-activity/Practitioner/Scen4Practitioner> ;
     fhir:reference [ fhir:v "Practitioner/Scen4Practitioner" ] ;
     fhir:display [ fhir:v "Ms. Rocha" ]
  ] ; # 
  fhir:goal ( [
     fhir:link <http://hl7.org/fhir/us/physical-activity/Goal/Scen4Goal1V2> ;
     fhir:reference [ fhir:v "Goal/Scen4Goal1V2" ]
  ] [
     fhir:link <http://hl7.org/fhir/us/physical-activity/Goal/Scen4Goal2V1> ;
     fhir:reference [ fhir:v "Goal/Scen4Goal2V1" ]
  ] ) . # 

<http://hl7.org/fhir/us/physical-activity/Patient/Scen4PatientScarborough> a fhir:us .

<http://hl7.org/fhir/us/physical-activity/Practitioner/Scen4Practitioner> a fhir:us .

<http://hl7.org/fhir/us/physical-activity/Goal/Scen4Goal1V2> a fhir:us .

<http://hl7.org/fhir/us/physical-activity/Goal/Scen4Goal2V1> a fhir:us .

# -------------------------------------------------------------------------------------

