Physical Activity Implementation Guide 1.0.0 - STU Release 1
Publication Build: This will be filled in by the publication tooling
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:Bundle ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "ExampleSubscriptionBundleWithNoIds"] ; # fhir:type [ fhir:v "history"] ; # fhir:entry ( [ fhir:fullUrl [ fhir:v "urn:uuid:b4fb4012-ff43-4e9d-8047-813b13914d72"^^xsd:anyURI ] ; ( fhir:resource <urn:uuid:b4fb4012-ff43-4e9d-8047-813b13914d72> ) ; fhir:request [ fhir:method [ fhir:v "GET" ] ; fhir:url [ fhir:v "https://example.org/fhir/Subscription/ExampleSubscriptionEmail/$status"^^xsd:anyURI ] ] ; fhir:response [ fhir:status [ fhir:v "200" ] ] ] ) . # <urn:uuid:b4fb4012-ff43-4e9d-8047-813b13914d72> a fhir:Parameters ; fhir:id [ fhir:v "ExampleSubscriptionStatusWithNoIds"] ; # fhir:parameter ( [ fhir:name [ fhir:v "subscription" ] ; fhir:value [ a fhir:Reference ; fhir:reference [ fhir:v "Subscription/ExampleSubscriptionEmail" ] ] ] [ fhir:name [ fhir:v "topic" ] ; fhir:value [ fhir:v "http://hl7.org/fhir/us/sdoh-clinicalcare/SubscriptionTopic/Task"^^xsd:anyURI ; fhir:link <http://hl7.org/fhir/us/sdoh-clinicalcare/SubscriptionTopic/Task> ] ] [ fhir:name [ fhir:v "status" ] ; fhir:value [ fhir:v "active" ] ] [ fhir:name [ fhir:v "type" ] ; fhir:value [ fhir:v "event-notification" ] ] [ fhir:name [ fhir:v "events-since-subscription-start" ] ; fhir:value [ fhir:v "7" ] ] ) . #