Order Catalog Implementation Guide
1.0.0-ballot - CI Build International flag

Order Catalog Implementation Guide, published by HL7 International / Orders and Observations. This guide is not an authorized publication; it is the continuous build for version 1.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-order-catalog/ and changes regularly. See the Directory of published versions

: Example Catalog - JSON Representation

Page standards status: Informative

Raw json | Download

{
  "resourceType" : "Composition",
  "id" : "example-catalog",
  "meta" : {
    "profile" : [
      🔗 "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/Catalog"
    ]
  },
  "language" : "en-US",
  "text" : {
    "status" : "additional",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\">\n            <p><b>Additional Narrative: </b></p>\n            <p><b>Catalog title:</b> Example Laboratory Service Catalog</p>\n            <p><b>id:</b> example-catalog</p>\n            <p><b>meta - profile:</b> hl7.org/fhir/uv/order-catalog/StructureDefinition/Catalog</p>\n            <p><b>status:</b> final</p>\n            <p><b>type:</b> Catalog</p>\n            <p><b>category:</b> protocol</p>\n            <p><b>date published:</b> June 1, 2024</p>\n            <p><b>valid from:</b> 2024-06-01 <b>to:</b> 2025-12-31</p>\n            <p><b>author:</b> <a href=\"Organization-example-lab-organization.html\">The good testing laboratory</a></p>\n        </div>"
  },
  "extension" : [
    {
      "url" : "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/ValidityPeriod",
      "valuePeriod" : {
        "start" : "2024-06-01",
        "end" : "2025-12-31"
      }
    }
  ],
  "status" : "final",
  "type" : {
    "text" : "Catalog"
  },
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/catalogType",
          "code" : "protocol"
        }
      ]
    }
  ],
  "date" : "2024-06-01T10:00:00+02:00",
  "author" : [
    {
      🔗 "reference" : "Organization/example-lab-organization"
    }
  ],
  "title" : "Example Laboratory Service Catalog",
  "section" : [
    {
      "title" : "Potassium measurement",
      "entry" : [
        {
          🔗 "reference" : "PlanDefinition/example-lab-service-potassium-serum"
        }
      ]
    },
    {
      "title" : "Serum creatinine measurement",
      "entry" : [
        {
          🔗 "reference" : "PlanDefinition/example-lab-test-serum-creatinine"
        }
      ]
    }
  ]
}