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 loinc: <https://loinc.org/rdf/> . @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:DiagnosticReport ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "ExampleReport"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2><span title=\"Codes: {http://loinc.org 11488-4}\">Consult note</span> (<span title=\"Codes: {http://hl7.org/fhir/us/physical-activity/CodeSystem/pa-temporary-codes PhysicalActivity}\">Physical Activity</span>) </h2><table class=\"grid\"><tr><td>Subject</td><td>Unable to get Patient Details</td></tr><tr><td>When For</td><td>2022-09-18 --> (ongoing)</td></tr><tr><td>Reported</td><td>2022-09-18 13:47:58-0500</td></tr></table><p><b>Report Details</b></p></div>" ] ; # fhir:basedOn ( [ fhir:reference [ fhir:v "ServiceRequest/ExampleServiceRequest" ] ; fhir:display [ fhir:v "Referral" ] ] ) ; # fhir:status [ fhir:v "final"] ; # fhir:category ( [ ( 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:code [ ( fhir:coding [ a loinc:11488-4 ; fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ; fhir:code [ fhir:v "11488-4" ] ; fhir:display [ fhir:v "Consult note" ] ] ) ] ; # 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:effective [ a fhir:Period ; fhir:start [ fhir:v "2022-09-18"^^xsd:date ] ] ; # fhir:issued [ fhir:v "2022-09-18T13:47:58.0282-05:00"^^xsd:dateTime] ; # fhir:performer ( [ fhir:link <http://example.org/PractitionerRole/2> ; fhir:reference [ fhir:v "http://example.org/PractitionerRole/2" ] ; fhir:display [ fhir:v "Performing Provider" ] ] ) . #