a fhir:Observation ;
fhir:id [ fhir:v "435098234"] ;
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div ""^^rdf:XMLLiteral
] ;
fhir:partOf ( [
fhir:reference [ fhir:v "ImagingStudy/8i7tbu6fby5ftfbku6fniuf" ]
] ) ;
fhir:status [ fhir:v "preliminary"] ;
fhir:category ( [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ] ;
fhir:code [ fhir:v "imaging" ] ;
fhir:display [ fhir:v "Imaging" ] ] )
] ) ;
fhir:code [
( fhir:coding [
fhir:system [ fhir:v "http://radlex.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "RID49690" ] ;
fhir:display [ fhir:v "simple cyst" ] ] )
] ;
fhir:subject [
fhir:reference [ fhir:v "Patient/19762ea6-4920-47a2-bf52-4027cb7adf92" ]
] ;
fhir:effective [
a fhir:dateTime ;
fhir:v "2020-09-07T15:02:03.651Z"^^xsd:dateTime
] ;
fhir:issued [ fhir:v "2020-09-07T15:02:03.651Z"^^xsd:dateTime] ;
fhir:performer ( [
fhir:reference [ fhir:v "Practitioner/d2bb499c-3021-4c20-a97b-e62469e9e5f5" ]
] ) .
```
--------------------------------
### SMART on FHIR Launch Parameters
Source: http://fhircast.hl7.org/4-1-launch-scenarios.html
Example of launch parameters provided to an application in a SMART on FHIR token response. Includes hub URL and topic for FHIRcast session.
```json
{
"access_token": "i8hweunweunweofiwweoijewiwe",
"token_type": "bearer",
"patient": "123",
"expires_in": 3600,
"encounter": "456",
"imagingstudy": "789",
"hub.url" : "https://hub.example.com",
"hub.topic": "fdb2f928-5546-4f52-87a0-0648e9ded065"
}
```
--------------------------------
### FHIRcast Get Current Content Bundle Example
Source: http://fhircast.hl7.org/Bundle-8i7tbu6fby5fuuey7133eh.json.html
This JSON represents a FHIRcast Bundle used to retrieve the current content. It includes a collection type and an entry for an Observation resource.
```json
{
"resourceType" : "Bundle",
"id" : "8i7tbu6fby5fuuey7133eh",
"meta" : {
"profile" : [
"http://fhircast.hl7.org/StructureDefinition/fhircast-get-current-content-bundle"
]
},
"type" : "collection",
"entry" : [
{
"fullUrl" : "urn:Observation/435098234",
"resource" : {
"resourceType" : "Observation",
"id" : "435098234",
"text" : {
"status" : "generated",
"div" : ""
},
"partOf" : [
{
"reference" : "ImagingStudy/8i7tbu6fby5ftfbku6fniuf"
}
],
"status" : "preliminary",
"category" : [
{
"coding" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/observation-category",
"code" : "imaging",
"display" : "Imaging"
}
]
}
],
"code" : {
"coding" : [
{
"system" : "http://radlex.org",
"code" : "RID49690",
"display" : "simple cyst"
}
]
},
"subject" : {
"reference" : "Patient/19762ea6-4920-47a2-bf52-4027cb7adf92"
},
"effectiveDateTime" : "2020-09-07T15:02:03.651Z",
"issued" : "2020-09-07T15:02:03.651Z",
"performer" : [
{
"reference" : "Practitioner/d2bb499c-3021-4c20-a97b-e62469e9e5f5"
}
]
}
}
]
}
```