How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Comment on Element Identifiers in FHIR by Tomas

calendar_today June 4, 2024 person Tomas domain firely-server

I stumbled on this blog when looking for ways to link different elements in the same resource. More specifically, our model can have a link from a contactpoint to an address (eg. this phone belongs to this home). In FHIR, as patient.telecom and patient.address are distinct sets, linking elements in this list does not seem straight forward. Would it be valid FHIR referencing if we were to use this element id for internal references from a telecom to an address? Eg the json of a patient would look something like this (irrelevant fields omitted for clarity):

{ “telecom”: [ { “extension”: [ { “url”: “urlTODO”, “valueReference”: { “reference”: “abc123” } } ] } ], “address”: [ { “id”: “abc123” } ] }

Do you think this would be a valid way of using the ‘id’ of an element to link elements in the same resource?

open_in_new Read original post