Extracting Resource from FHIR Bundle
Does anyone have an example of extracting the Resource from a FHIR Bundle?
{
"resourceType": "Bundle",
"type": "searchset",
"total": 5,
"link": [
{
"relation": "self",
"url": "https://hostname/instance/api/FHIR/R4/Practitioner?given=marty&family=seeger"
}
],
"entry": [
{
"link": [
{
"relation": "self",
"url": "https://hostname/instance/api/FHIR/R4/Practitioner/eUQwZHO1O.8KAThR14DRZO5EOxf.Fu6hu8pLE9e60Nh43"
}
],
"fullUrl": "https://hostname/instance/api/FHIR/R4/Practitioner/eUQwZHO1O.8KAThR14DRZO5EOxf.Fu6hu8pLE9e60Nh43",
"resource": {
"resourceType": "Practitioner",
"id": "eUQwZHO1O.8KAThR14DRZO5EOxf.Fu6hu8pLE9e60Nh43",
"identifier": [
{
"use": "usual",
"type": {
"text": "INTERNAL"
},
"value": " 10199005"
},
{
"use": "usual",
"type": {
"text": "EXTERNAL"....
JSONJSON
I am working on a Proof of Concept to read data from our EMR FHIR Repository and was able to do it with a Response type of patient, but I am not sure how a Response Type of Bundle works.
Thanks
Scott
Product version: IRIS 2024.1
$ZV: IRIS for UNIX (Red Hat Enterprise Linux 8 for x86-64) 2024.1 (Build 267_2U) Tue Apr 30 2024 16:06:39 EDT [HealthConnect:7.2.0-1.r1]
Set dynOBJ={}.%FromJSONFile("c:\temp\BundleSample.json")
Set firstResource=dynOBJ.entry.%Get(0).resource
Write firstResource.resourceType