Example-Practitioner

<Practitioner xmlns="http://hl7.org/fhir">
    <id value="ca-csd-example-practitioner" />
    <meta>
        <profile value="http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Practitioner" />
    </meta>
    <identifier>
        <use value="usual" />
        <system value="http://example.org/practitioner-identifiers" />
        <value value="123456" />
    </identifier>
    <active value="true" />
    <name>
        <use value="official" />
        <family value="Smith" />
        <given value="John" />
    </name>
    <telecom>
        <system value="phone" />
        <value value="+1-555-555-5555" />
        <use value="work" />
    </telecom>
    <address>
        <use value="work" />
        <line value="456 Elm Street" />
        <city value="Smalltown" />
        <state value="NS" />
        <postalCode value="B3H0Z7" />
        <country value="CAN" />
    </address>
    <communication>
        <coding>
            <system value="urn:ietf:bcp:47" />
            <code value="en" />
            <display value="English" />
        </coding>
        <text value="English" />
    </communication>
</Practitioner>
{
    "resourceType": "Practitioner",
    "id": "ca-csd-example-practitioner",
    "meta": {
        "profile":  [
            "http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Practitioner"
        ]
    },
    "identifier":  [
        {
            "use": "usual",
            "system": "http://example.org/practitioner-identifiers",
            "value": "123456"
        }
    ],
    "active": true,
    "name":  [
        {
            "use": "official",
            "family": "Smith",
            "given":  [
                "John"
            ]
        }
    ],
    "communication":  [
        {
            "coding":  [
                {
                    "system": "urn:ietf:bcp:47",
                    "code": "en",
                    "display": "English"
                }
            ],
            "text": "English"
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "+1-555-555-5555",
            "use": "work"
        }
    ],
    "address":  [
        {
            "use": "work",
            "line":  [
                "456 Elm Street"
            ],
            "city": "Smalltown",
            "state": "NS",
            "postalCode": "B3H0Z7",
            "country": "CAN"
        }
    ]
}