We have some questions regarding Patient.identifier. We don’t have any type of information that’s specified in Valueset-identifier-type - FHIR v4.0.1 , that’s why we decided to identify patients with a compound identifier {plan_code}:{subscriber_id}, where
- plan-code is a unique plan ID number, which identifies the plan, to which the patient is assigned
- subscriber-id is an id for insured (patient) assigned by the plan (it is unique within the plan)
For example, if plan_code = MED and subscriber_id = 12345 then patient.identifier.value = MED:12345.
In case if a patient changes the plan, one more identifier will be added (with an appropriate period) which will specify their new plan and subscriber_id.
Question#1: Would this approach work?
Question#2: Can we specify patient.identifier.system as
patient.identifier.system =“urn:myOrganizationName:plan-code:subscriber-id” ?
Question#3: Do we need to register this system value (urn:myOrganizationName:plan-code:subscriber-id) in the HL7 OID registry or any other registries?
Thank you