Order Catalog Implementation Guide
0.1.0 - STU Ballot 1

This page is part of the Order Catalog Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: Laboratory Organization - JSON Representation

Raw json | Download

{
  "resourceType" : "Organization",
  "id" : "example-lab-organization",
  "language" : "en-US",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\"><p><b>Generated Narrative</b></p><p><b>id</b>: example-lab-organization</p><p><b>language</b>: en-US</p><p><b>active</b>: true</p><p><b>name</b>: The Good Testing Laboratory</p><p><b>telecom</b>: http://fhir.org(TEMP)</p><p><b>address</b>: 1 Lab Dr Paris TX 12340 USA (TEMP)</p></div>"
  },
  "active" : true,
  "name" : "The Good Testing Laboratory",
  "telecom" : [
    {
      "system" : "url",
      "value" : "http://fhir.org",
      "use" : "temp"
    }
  ],
  "address" : [
    {
      "use" : "temp",
      "type" : "both",
      "line" : [
        "1 Lab Dr"
      ],
      "city" : "Paris",
      "state" : "TX",
      "postalCode" : "12340",
      "country" : "USA"
    }
  ]
}