FHIR Chat · Bundle of References? · implementers

Stream: implementers

Topic: Bundle of References?


view this post on Zulip Brian Kaney (Oct 03 2019 at 19:25):

I need to send a set of links to external FHIR resources, in this case Plan Definitions. I was thinking using a Bundle would be the way to do it:

{
  "resourceType": "Bundle",
  "type": "collection",
  "entry": [
    { "fullUrl": "http://offsite-example.org/fhir/PlanDefinition/1" },
    { "fullUrl": "http://offsite-example.org/fhir/PlanDefinition/2" },
    { "fullUrl": "http://offsite-example.org/fhir/PlanDefinition/3" }
  ]
}

I haven't seen another way to send a bunch of FHIR references. Is there a better way to do this?

view this post on Zulip Grahame Grieve (Oct 03 2019 at 19:53):

a list


Last updated: Apr 12 2022 at 19:14 UTC