oxford-university

Structure Tree

Organization

Structure Table

Organization.id[0]oxford-university
Organization.active[0]True
Organization.type[0].coding[0].system[0]http://terminology.hl7.org/CodeSystem/organization-type
Organization.type[0].coding[0].code[0]team
Organization.type[0].coding[0].display[0]Organizational team
Organization.name[0]Oxford University
Organization.telecom[0].system[0]phone
Organization.telecom[0].value[0]911
Organization.address[0].text[0]21, Washington Street

JSON

{
    "resourceType": "Organization",
    "id": "oxford-university",
    "active": true,
    "type":  [
        {
            "coding":  [
                {
                    "system": "http://terminology.hl7.org/CodeSystem/organization-type",
                    "code": "team",
                    "display": "Organizational team"
                }
            ]
        }
    ],
    "name": "Oxford University",
    "telecom":  [
        {
            "system": "phone",
            "value": "911"
        }
    ],
    "address":  [
        {
            "text": "21, Washington Street"
        }
    ]
}

XML

<Organization xmlns="http://hl7.org/fhir">
    <id value="oxford-university" />
    <active value="true" />
    <type>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/organization-type" />
            <code value="team" />
            <display value="Organizational team" />
        </coding>
    </type>
    <name value="Oxford University" />
    <telecom>
        <system value="phone" />
        <value value="911" />
    </telecom>
    <address>
        <text value="21, Washington Street" />
    </address>
</Organization>