Electronic Referral

@mkumar Each Clinic Type is associated to one Specialty. This is expressed in the reference data using the “specialty” property on each concept in the Clinic Type reference data.

For example.

Taken from “Clinic Type Reference Data” Example from A004 - Retrieve reference data:

{
    "code": "FOOD_AND_DRUG_ALLERGY",
    "display": "Food and Drug Allergy",
    "property": [
        {
            "code": "effectiveFrom",
            "valueDateTime": "2004-06-01T00:00:00.000Z"
        },
        {
            "code": "effectiveTo",
            "valueDateTime": "2009-03-14T00:00:00.000Z"
        },
        {
            "code": "specialty",
            "valueCoding": {
                "system": "_baseUrl_/STU3/CodeSystem/SPECIALTY",
                "code": "ALLERGY"
            }
        }
    ]
}

This shows the FOOD_AND_DRUG_ALLERGY Clinic type is part of the ALLERGY Specialty.

Taken from “Specialty Type Reference Data” Example from A004 - Retrieve reference data:

{
    "extension": [
        {
            "url": "https://fhir.nhs.uk/STU3/StructureDefinition/Extension-eRS-EffectivefromDate-1",
            "valueDate": "2004-06-01"
        }
    ],
    "code": "ALLERGY",
    "display": "Allergy",
    "property": [
        {
            "code": "effectiveFrom",
            "valueDateTime": "2004-06-01T00:00:00.000Z"
        }
    ]
}