STU 3 Candidate

This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions

Example-gao-order.xml

Raw XML (canonical form)

A 50-year-old male is ordered a CT of the Head for his headache by an identified practitioner. (id = "example-gao-order")

<Order xmlns="http://hl7.org/fhir">
  <id value="example-gao-order"/>
  <meta>
    <profile value="http://hl7.org/fhir/StructureDefinition/gao-order"/>
  </meta>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <p>A 50-year-old male is ordered a CT of the Head for his headache by an identified practitioner.</p>
    </div>
  </text>
  <contained>
    <Patient>
      <id value="patient"/>
      <meta>
        <profile value="http://hl7.org/fhir/StructureDefinition/gao-patient"/>
      </meta>
      <gender value="male"/>
      <birthDate value="1965-11-20"/>
    </Patient>
  </contained>
  <contained>
    <Practitioner>
      <id value="practitioner"/>
      <meta>
        <profile value="http://hl7.org/fhir/StructureDefinition/gao-practitioner"/>
      </meta>
      <identifier>
        <system value="http://hl7.org/fhir/sid/us-npi"/>
        <value value="9999999999"/>
      </identifier>
    </Practitioner>
  </contained>
  <contained>
    <DiagnosticOrder>
      <id value="diagnosticorder"/>
      <meta>
        <profile value="http://hl7.org/fhir/StructureDefinition/gao-diagnosticorder"/>
      </meta>
      <subject>
        <reference value="example-gao-order#patient"/>
      </subject>
      <orderer>
        <reference value="example-gao-order#practitioner"/>
      </orderer>
      <item>
        <code>
          <coding>
            <system value="http://loinc.org"/>
            <code value="30799-1"/>
            <display value="Head CT WO contrast"/>
          </coding>
          <text value="CT Head without contrast"/>
        </code>
      </item>
    </DiagnosticOrder>
  </contained>
  <identifier>
    <system value="http://example.com/OrderIdentifier"/>
    <value value="123"/>
  </identifier>
  <date value="2015-11-20"/>
  <subject>
    <reference value="#patient"/>
  </subject>  
  <source>
    <reference value="#practitioner"/>
  </source>
  <reasonCodeableConcept>
    <coding>
      <system value="http://example.com"/>
      <code value="x"/>
    </coding>
    <text value="Headache"/>
  </reasonCodeableConcept>        
  <detail>
    <reference value="#diagnosticorder"/>
  </detail>
</Order>

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.