Genomics Reporting Implementation Guide (STU1)

This page is part of the Genetic Reporting Implementation Guide (v1.0.0: STU 1) based on FHIR R4. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions

Example - Service request for high-resolution HLA-A genotyping - JSON Representation

(back to narrative)

Raw json

{
  "resourceType" : "ServiceRequest",
  "id" : "servicerequest-hla-a-r4",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/uv/genomics-reporting/StructureDefinition/servicerequest"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <pre>High resolution HLA-A typing for sample 001-123456789</pre>\n        </div>"
  },
  "identifier" : [
    {
      "system" : "http:/aDonorRegistry.com",
      "value" : "1234.5678"
    }
  ],
  "status" : "completed",
  "intent" : "order",
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "108252007",
          "display" : "Laboratory procedure"
        }
      ]
    }
  ],
  "priority" : "routine",
  "code" : {
    "coding" : [
      {
        "system" : "http://loinc.org",
        "code" : "13298-5",
        "display" : "HLA-A [Type]"
      }
    ]
  },
  "subject" : {
    "identifier" : {
      "value" : "001^24680"
    }
  },
  "requester" : {
    "type" : "Organization",
    "display" : "aDonorRegistry"
  },
  "performer" : [
    {
      "type" : "Organization",
      "display" : "aTypingLab, Inc"
    }
  ],
  "specimen" : [
    {
      "type" : "Specimen",
      "display" : "buccal swab: 123456789"
    }
  ]
}