Genomics Reporting Implementation Guide
1.1.0 - Ballot

This page is part of the Genetic Reporting Implementation Guide (v1.1.0: STU 2 Ballot 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 - XML Representation

Raw xml | Download



<ServiceRequest xmlns="http://hl7.org/fhir">
  <id value="servicerequest-hla-a-r4"/>
  <meta>
    <profile
             value="http://hl7.org/fhir/uv/genomics-reporting/StructureDefinition/servicerequest"/>
  </meta>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml">
            <pre>High resolution HLA-A typing for sample 001-123456789</pre>
        </div>
  </text>
  <identifier>
    <system value="http:/aDonorRegistry.com"/>
    <value value="1234.5678"/>
  </identifier>
  <status value="completed"/>
  <intent value="order"/>
  <category>
    <coding>
      <system value="http://snomed.info/sct"/>
      <code value="108252007"/>
      <display value="Laboratory procedure"/>
    </coding>
  </category>
  <priority value="routine"/>
  <code>
    <coding>
      <system value="http://loinc.org"/>
      <code value="13298-5"/>
      <display value="HLA-A [Type]"/>
    </coding>
  </code>
<!--  subject is required, but this test is for a de-identified sample, so we stub in the specimen identifier  -->
  <subject>
    <identifier>
      <value value="001^24680"/>
    </identifier>
  </subject>
  <requester>
  <!--  <reference value="http://example/r4/Organization/123"/> -->
    <type value="Organization"/>
    <display value="aDonorRegistry"/>
  </requester>
  <performer>
  <!--  <reference value="http://example/r4/Organization/456"/>  -->
    <type value="Organization"/>
    <display value="aTypingLab, Inc"/>
  </performer>
  <specimen>
  <!--  <reference value="http://example/r4/Specimen/f456"/>  -->
    <type value="Specimen"/>
    <display value="buccal swab: 123456789"/>
  </specimen>
</ServiceRequest>