HL7 FHIR Implementation Guide: minimal Common Oncology Data Elements (mCODE) Release 1 - US Realm | STU Ballot 1

This page is part of the HL7 FHIR Implementation Guide: minimal Common Oncology Data Elements (mCODE) Release 1 - US Realm | STU1 (v0.9.1: STU 1 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: mCODEPatientExample01


<Patient xmlns="http://hl7.org/fhir">
  <id value="mCODEPatientExample01"/>
  <meta>
    <profile
             value="http://hl7.org/fhir/us/mcode/StructureDefinition/obf-Patient"/>
  </meta>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml">
			<p>
				<b>*** mCODE Example: Patient ***</b>
			</p>
			<p>
				<b>id</b>: example</p>
			<p>
				<b>identifier</b>: Medical Record Number = m123 (USUAL)</p>
			<p>
				<b>name</b>: John B. Anyperson </p>
			<p>
				<b>telecom</b>: ph: 555-555-5555(HOME), john.anyperson@example.com</p>
			<p>
				<b>gender</b>: male</p>
			<p>
				<b>birthsex</b>: M</p>
			<p>
				<b>birthDate</b>: Jan 20, 1951</p>
			<p>
				<b>address</b>: 123 Main St Anytown MA 12345 US </p>
			<p>
				<b>race</b>: Black</p>
			<p>
				<b>ethnicity</b>: Not Hispanic or Latino</p>
		</div>
  </text>
  <extension url="http://hl7.org/fhir/us/core/StructureDefinition/us-core-race">
    <extension url="ombCategory">
      <valueCoding>
        <system value="urn:oid:2.16.840.1.113883.6.238"/>
        <code value="2054-5"/>
        <display value="Black or African American"/>
      </valueCoding>
    </extension>
    <extension url="text">
      <valueString value="Black"/>
    </extension>
  </extension>
  <extension
             url="http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity">
    <extension url="ombCategory">
      <valueCoding>
        <system value="urn:oid:2.16.840.1.113883.6.238"/>
        <code value="2186-5"/>
        <display value="Not Hispanic or Latino"/>
      </valueCoding>
    </extension>
    <extension url="text">
      <valueString value="Not Latino"/>
    </extension>
  </extension>
  <extension
             url="http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex">
    <valueCode value="M"/>
  </extension>
  <identifier>
    <use value="usual"/>
    <type>
      <coding>
        <system value="http://terminology.hl7.org/CodeSystem/v2-0203"/>
        <code value="MR"/>
        <display value="Medical Record Number"/>
      </coding>
      <text value="Medical Record Number"/>
    </type>
    <system value="http://hospital.example.org"/>
    <value value="m123"/>
  </identifier>
  <name>
    <family value="Anyperson"/>
    <given value="John"/>
    <given value="B."/>
  </name>
  <telecom>
    <system value="phone"/>
    <value value="555-555-5555"/>
    <use value="home"/>
  </telecom>
  <telecom>
    <system value="email"/>
    <value value="john.anyperson@example.com"/>
  </telecom>
  <gender value="male"/>
  <birthDate value="1951-01-20"/>
  <address>
    <line value="123 Main St"/>
    <city value="Anytown"/>
    <state value="MA"/>
    <postalCode value="12345"/>
    <country value="US"/>
  </address>
  <communication>
    <language>
      <coding>
        <system value="urn:ietf:bcp:47"/>
        <code value="en-US"/>
        <display value="English (Region=United States)"/>
      </coding>
      <text value="English"/>
    </language>
  </communication>
</Patient>