Sample Practitioner

Scenario: A practitioner creation request is sent with the following details:

  • Other details like name, telecome etc as mentioned in the sample below.

Note : under telecom 'email' is mandatory and other values (phone, fax, pager, url, sms, other) are optional.

{
    "id": "abdca832-a616-454b-b5c7-f1ed1fb45d4e",
    "resourceType": "Practitioner",
    "meta": {
        "profile":  [
            "http://roche.com/fhir/rdc/StructureDefinition/practitioner-v2"
        ]
    },
    "identifier":  [
        {
            "system": "urn:oid:2.16.724.4.305",
            "value": "99999999A"
        }
    ],
    "active": "true",
    "name":  [
        {
            "family": "Pérez Fuster",
            "given":  [
                "Manolo"
            ]
        }
    ],
    "telecom":  [
        {
            "system": "email",
            "value": "bla@bla.com"
        },
        {
            "system": "phone",
            "value": "555-12345"
        }
    ],
    "gender": "male",
    "birthDate": "1975-06-16"
}