AU Provider Directory Implementation Guide
2.1.0 - Draft Australia flag

AU Provider Directory Implementation Guide, published by HL7 Australia. This guide is not an authorized publication; it is the continuous build for version 2.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7au/au-fhir-pd/ and changes regularly. See the Directory of published versions

: Location - Downunder Hospital Blacktown - JSON Representation

Page standards status: Informative

Raw json | Download


{
  "resourceType" : "Location",
  "id" : "example0",
  "meta" : {
    "profile" : [
      🔗 "http://hl7.org.au/fhir/pd/StructureDefinition/au-pd-location"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Location</b><a name=\"example0\"> </a><a name=\"hcexample0\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Location &quot;example0&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-au-pd-location.html\">AU PD Location</a></p></div><p><b>identifier</b>: LSPN/123333</p><p><b>status</b>: active</p><p><b>name</b>: Downunder Hospital Blacktown</p><p><b>telecom</b>: ph: 025553555(WORK)</p><p><b>address</b>: 3 McGregor Street Blacktown NSW 2148 Australia (work)</p></div>"
  },
  "identifier" : [
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org.au/CodeSystem/v2-0203",
            "code" : "LSPN",
            "display" : "Location Specific Practice Number"
          }
        ],
        "text" : "LSPN"
      },
      "system" : "http://ns.electronichealth.net.au/id/location-specific-practice-number",
      "value" : "123333"
    }
  ],
  "status" : "active",
  "name" : "Downunder Hospital Blacktown",
  "telecom" : [
    // In Australia LSPNs are an
        incremental number that have been incremented to 5 digits, this example uses a fictional
        LSPN from 100,000 + to ensure no conflict with real world values
    {
      "system" : "phone",
      "value" : "025553555",
      "use" : "work"
    }
  ],
  "address" : {
    "use" : "work",
    "line" : [
      "3 McGregor Street"
    ],
    "city" : "Blacktown",
    "state" : "NSW",
    "postalCode" : "2148",
    "country" : "Australia"
  }
}