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

: Lab input observation - reason - JSON Representation

Raw json | Download

{
  "resourceType" : "ObservationDefinition",
  "id" : "example-input-observation-reason-for-ordering",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/InputObservationDefinition"
    ]
  },
  "language" : "en-US",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\">\n            <p>Reason for ordering a laboratory service, asked at order entry</p>\n            <p><b>category:</b> Exam</p>\n            <p><b>code:</b> 67098-4 |Reason for test or procedure| (http://loinc.org)</p>\n            <p><b>permittedDataType:</b> CodeableConcept, string</p>\n            <p><b>multipleResultAllowed:</b> true</p>\n            <p><b>validCodedValueSet:</b> ValueSet/example-reasons-for-order</p>\n        </div>"
  },
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/observation-category",
          "code" : "exam",
          "display" : "Exam"
        }
      ]
    }
  ],
  "code" : {
    "coding" : [
      {
        "system" : "http://loinc.org",
        "code" : "67098-4",
        "display" : "Reason for test or procedure"
      }
    ]
  },
  "permittedDataType" : [
    "CodeableConcept",
    "string"
  ],
  "multipleResultsAllowed" : true,
  "validCodedValueSet" : {
    "reference" : "ValueSet/example-reasons-for-order"
  }
}