Australian Digital Health Agency FHIR Implementation Guide
1.2.0-ci-build - draft Australia flag

Australian Digital Health Agency FHIR Implementation Guide, published by Australian Digital Health Agency. This guide is not an authorized publication; it is the continuous build for version 1.2.0-ci-build built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/AuDigitalHealth/ci-fhir-r4/ and changes regularly. See the Directory of published versions

: NSW Hospital (ABN, HPI-O, SNOMED CT + V3 type, Phone, Website, Address) - JSON Representation

Raw json | Download


{
  "resourceType" : "Organization",
  "id" : "nsw-hospital",
  "meta" : {
    "profile" : [
      🔗 "http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-organization-core-1"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <h3>NSW Hospital</h3>\n            <table>\n                <tr>\n                    <td>HPI-O</td>\n                    <td>8003626566699734</td>\n                </tr>\n                <tr>\n                    <td>ABN</td>\n                    <td>41824753557</td>\n                </tr>\n                <tr>\n                    <td>Phone</td>\n                    <td>(02) 5550 4444</td>\n                </tr>\n                <tr>\n                    <td>Address</td>\n                    <td>2325 Rocklands Rd, North Sydney NSW 2060</td>\n                </tr>\n                <tr>\n                    <td>Website</td>\n                    <td>https://www.health.nsw.example.org/nsw-hospital</td>\n                </tr>\n            </table>\n        </div>"
  },
  "identifier" : [
    // Invalid ABN format that passes profile validation used as the fictitious ABN to avoid introducing ambiguity with real world organisations
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "XX"
          }
        ],
        "text" : "ABN"
      },
      "system" : "http://hl7.org.au/id/abn",
      "value" : "41824753557"
    },
    //  Not a valid ABN. This example uses a fictional
        ABN that does not conform to ABN format to ensure no conflict with real world values 
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org.au/CodeSystem/v2-0203",
            "code" : "NOI"
          }
        ],
        "text" : "HPI-O"
      },
      "system" : "http://ns.electronichealth.net.au/id/hi/hpio/1.0",
      "value" : "8003626566699734"
    }
  ],
  "type" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "22232009"
        },
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
          "code" : "HOSP"
        }
      ],
      "text" : "Hospital"
    }
  ],
  "name" : "NSW Hospital",
  "telecom" : [
    {
      "system" : "url",
      "value" : "https://www.health.nsw.example.org/nsw-hospital"
    },
    {
      "system" : "phone",
      "value" : "(02) 5550 4444"
    }
  ],
  "address" : [
    {
      "type" : "physical",
      "text" : "2325 Rocklands Rd, North Sydney NSW 2060",
      "line" : [
        "2325 Rocklands Rd"
      ],
      "city" : "North Sydney",
      "state" : "NSW",
      "postalCode" : "2060",
      "country" : "AU"
    }
  ]
}