Physical Activity Implementation Guide 1.0.0-ballot - STU1 ballot-draft
This page is part of the U.S. Physical Activity IG (v1.0.0-ballot: STU 1.0 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions
Raw ttl | Download
@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 ------------------------------------------------------------------- a fhir:CarePlan ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "ExampleCarePlan"] ; # fhir:text [ fhir:status [ fhir:v "additional" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Put contents of CarePlan here</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://example.org/Patient/1> ; fhir:reference [ fhir:v "http://example.org/Patient/1" ] ; fhir:display [ fhir:v "Example Patient" ] ] ; # fhir:period [ fhir:start [ fhir:v "2022-06-08"^^xsd:date ] ; fhir:end [ fhir:v "2023-06-08"^^xsd:date ] ] ; # fhir:note ( [ fhir:author [ a fhir:Reference ; fhir:reference [ fhir:v "RelatedPerson/ExampleRelatedPerson" ] ; fhir:display [ fhir:v "Mother" ] ] ; fhir:time [ fhir:v "2022-12-15"^^xsd:date ] ; fhir:text [ fhir:v "Some comments." ] ] ) . #