Skip to main content

FHIR System: Identifier - Caredove HealthcareService

Written by Rachel Shelswell
Updated over a week ago

System: "Caredove HealthcareService Identifier"
URL: "http://help.caredove.com/developer-integrations/fhir-system-healthcareservice-id"
Value: String

Description:

This system is used to represent the Caredove service listing ID within FHIR ServiceRequest and HealthcareService resources.

Resource & Resource Element Locations:

  • ServiceRequest: ServiceRequest.performer[0].identifier element

  • HealthcareService: HealthcareService.identifier[*].system element

Example - ServiceRequest:

{
"resourceType": "ServiceRequest",
"performer": [
{
"system": "http://help.caredove.com/developer-integrations/fhir-system-healthcareservice-id",
"value": "11111",
"assigner": {
"display": "Caredove Inc."
}
}
],
"...": "..."
}

Example - HealthcareService:

{
"resourceType": "HealthcareService",
"identifier": [
{
"use": "official",
"system": "http://help.caredove.com/developer-integrations/fhir-system-healthcareservice-id",
"value": "11111",
"assigner": {
"display": "Caredove Inc."
}
}
],
"...": "..."
}

Did this answer your question?