FHIR Resource - PractitionerRole

OpenIMIS table - tblClaimAdmin

FHIR field

OpenIMIS field

notes

mapping status

practitioner - Reference(Practitioner)

Rest field of Claim Admin

example of reference (where "{ClaimAdminCode}" is the Claim Admin code):

"Practitioner/{ClaimAdminCode}"

mapped

location - Reference(Location)

HFId

example of reference (where "{HFCode}" is the health facility code):

"Location/{HFCode}"

mapped

Endpoint specification:

Example of endpoint URL:

http://127.0.0.1:8000/api_fhir/PractitionerRole/

Example JSON representation of content:

{
    "resourceType": "PractitionerRole",
    "identifier": [
        {
            "type": {
                "coding": [
                    {
                        "code": "ACSN",
                        "system": "https://hl7.org/fhir/valueset-identifier-type.html"
                    }
                ]
            },
            "use": "usual",
            "value": "6"
        }
    ],
    "location": [
        {
            "reference": "Location/hfcode"
        }
    ],
    "practitioner": {
        "reference": "Practitioner/code"
    }
}