Health Care Surveys Content Implementation Guide
0.1.0 - STU 1 Ballot

This page is part of the Making EHR Data MOre available for Research and Public Health (MedMorph) Healthcare Surveys Reporting Content IG (v0.1.0: STU 1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: Example of a Content Bundle containing Patient Data - XML Representation

Raw xml | Download



<Bundle xmlns="http://hl7.org/fhir">
  <id value="content-bundle-example"/>
  <meta>
    <versionId value="1"/>
    <lastUpdated value="2020-11-29T02:03:28.045+00:00"/>
    <profile
             value="http://hl7.org/fhir/us/health-care-surveys-reporting/StructureDefinition/hcs-content-bundle"/>
  </meta>
  <type value="collection"/>
  <timestamp value="2020-11-20T11:15:33-10:00"/>
  <entry>
    <fullUrl value="Patient/1"/>
    <resource>
      <Patient>
        <id value="1"/>
        <meta>
          <versionId value="1"/>
          <lastUpdated value="2020-11-29T02:03:28.045+00:00"/>
          <profile
                   value="http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"/>
        </meta>
        <text>
          <status value="generated"/>
          <div xmlns="http://www.w3.org/1999/xhtml">
            <p> Patient Dominique Ledner</p>           
          </div>
        </text>
        <identifier>
          <use value="usual"/>
          <type>
            <coding>
              <system value="http://terminology.hl7.org/CodeSystem/v2-0203"/>
              <code value="MR"/>
            </coding>
          </type>
          <system value="urn:oid:0.1.2.3.4.5.6.7"/>
          <value value="654321"/>
        </identifier>
        <active value="true"/>
        <name>
          <use value="official"/>
          <family value="Ledner"/>
          <given value="Dominique"/>
        </name>
        <gender value="male"/>
        <managingOrganization>
          <reference value="Organization/example-healthcare-org"/>
          <display value="Example Healthcare org"/>
        </managingOrganization>
      </Patient>
    </resource>
  </entry>
  <entry>
    <fullUrl value="Encounter/example-1"/>
    <resource>
      <Encounter>
        <id value="example-1"/>
        <meta>
          <extension url="http://hl7.org/fhir/StructureDefinition/instance-name">
            <valueString value="Encounter 1 Example"/>
          </extension>
          <lastUpdated value="2017-05-26T11:56:57.250-04:00"/>
          <profile
                   value="http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"/>
        </meta>
        <text>
          <status value="generated"/>
          <div xmlns="http://www.w3.org/1999/xhtml"><p><b>Generated Narrative</b></p><p><b>status</b>: finished</p><p><b>class</b>: <span title="{http://terminology.hl7.org/CodeSystem/v3-ActCode AMB}">ambulatory</span></p><p><b>type</b>: <span title="Codes: {http://snomed.info/sct 308335008}">Office Visit</span></p><p><b>subject</b>: Generated Summary: Medical Record Number: 654321 (USUAL); active; Ledner Dominique; </p><p><b>period</b>: Nov 1, 2015 10:00:14 PM --&gt; Nov 1, 2015 11:00:14 PM</p></div>
        </text>
        <status value="finished"/>
        <class>
          <system value="http://terminology.hl7.org/CodeSystem/v3-ActCode"/>
          <code value="AMB"/>
          <display value="ambulatory"/>
        </class>
        <type>
          <coding>
            <system value="http://snomed.info/sct"/>
            <code value="308335008"/>
          </coding>
          <text value="Office Visit"/>
        </type>
        <subject>
          <reference value="Patient/1"/>
        </subject>
        <period>
          <start value="2015-11-01T17:00:14-05:00"/>
          <end value="2015-11-01T18:00:14-05:00"/>
        </period>
      </Encounter>
    </resource>
  </entry>
</Bundle>