We have requirement to link patient preferred pharmacy with patient and then send through FHIR specification. I have researched and found that we can use location resource for pharmacy but I could not found how can we do link between Location and Patient resource. Also, In Patient resource there is no field for Location reference.
Additionally, I have looked CareTeam resource but it does not have Location reference field available.
Location refers to a physical building. The Pharmacy - as in ‘the group of people responsible for dispensing medications’ would actually be an Organization. CareTeam would be appropriate and can link to Organizations.
The value set for Organization.type is defined with a strength of ‘example’. That means there’s no expectation that implementers will use those codes or that they’re anywhere near complete. You can (and should) draw codes from elsewhere or define your own codes if need-be.
The same holds for CareTeam.participant.role
You can, if you wish, submit a change proposal asking for a ‘standard’ code to be defined and added to the value set, but there’s little chance that these value sets will ever be ‘complete’
That means, It is not mandatory to use Organization.type and CareTeam.participant.role from the FHIR provided examples and hence we can define our own Or any CodeableCencept which which represents type and role, Is this correct?
I found one Snomed for Pharmacy so, we can use Organization.type as shown below:
“type”: [
{
“coding”: [
{
“system”: “http://snomed.info/sct”,
“code”: “310080006”,
“display”: “Pharmacy service”
}
]
}
],