Chirp Patient Api Documentation
The following are a series of apis that satisfy CEHRT Regulations § 170.315(g)(7) and § 170.315(g)(9) for Chirp version 1.1. Documentation of the apis that satisfy CEHRT Regulations § 170.315(g)(10) can be found at https://apidocs.onemedical.io/fhir/overview/
Registration
SMART on FHIR applications need to be registered with Chirp before they can be used. To start the registration process, please submit a request by filling out this form.. Chirp will review your request and if you are approved you will receive an OAuth client_id to use on subsequent requests following the protocols specified in the official SMART App Authorization Guide.
After registering an account, credentials will be given which will enable you to generate an Authorization Grant and Access Token.
Authentication
Chirp APIs are authenticated using the OAuth 2.0 protocol. All API requests must include an Authorization header with an Access Token of the form:
Authorization: Bearer MY_ACCESS_TOKEN
Public applications, such as native apps, which are incapable of securely storing credentials will not be issued a client_secret. Instead, the authorization_code grant flow will be used to issue refresh tokens. As recommended in the OAuth 2.0 Authorization Framework spec (RFC 6749), we require additional security measures when issuing refresh tokens to native applications. Specifically, we enforce refresh token rotation for all public applications, which is an auth flow in which each refresh token issued is valid for one use only. Whenever a public application uses a refresh token to request an access token, a new refresh token will be returned in the response body in addition to the requested access token. See Auth0’s “Refresh Token Rotation” documentation for additional details.
Errors
Chirp Apis use the HTTP status codes below to report the status of the request and the type of error you may have encountered.
- 200 - OK
- 401 - Unauthorized
- 403 - Forbidden
- 404 - Not found
- 422 - Unprocessable Entity
- 500 - Internal Server Error
Get the unique identifier of a patient record. This is a FHIR api.
[OPTIONAL] Part of the given or family name of the patient
[OPTIONAL] Part of the family name of the patient
[OPTIONAL] A patient identifier
[OPTIONAL] The patient's date of birth (format: YYY_MM_DD)
[OPTIONAL] Gender of the patient (male|female|other|unknown)
GET production.icisapp.com/api/v1/fhir/Patient.json?name=thund&birthdate=1961-07-07
{
"type": "searchset",
"timestamp": "2020-07-17T21:11:57+00:00",
"total": 1,
"entry": [
{
"fullUrl": "https://production.icisapp.com/api/v1/fhir/Patient/0c5a1eabd297b876f248ccd83cc56945",
"resource": {
"id": "0c5a1eabd297b876f248ccd83cc56945",
"extension": [
{
"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
"valueCode": "M"
}
],
"identifier": [
{
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "PI"
}
]
},
"value": "0c5a1eabd297b876f248ccd83cc56945"
}
],
"name": [
{
"use": "usual",
"family": "Thundergod",
"given": [
"Thor"
]
}
],
"telecom": [
{
"system": "email",
"value": "gianna+thor@example.com"
},
{
"system": "phone",
"value": "617-335-5564"
}
],
"gender": "male",
"birthDate": "1961-07-07",
"address": [
{
"line": [
"32 RANCH PASS"
],
"city": "CHEYENNE",
"state": "WY",
"postalCode": "82001"
}
],
"resourceType": "Patient"
}
}
],
"resourceType": "Bundle"
}
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=patient
<patient>
<name>
<family>Newman</family>
<given>Alice</given>
<given>Jones</given>
<given qualifier="BR">Alicia</given>
</name>
<administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1" codeSystemName="AdministrativeGender" displayName="Female"/>
<birthTime value="19700501"/>
<raceCode code="2106-3" codeSystem="2.16.840.1.113883.6.238" codeSystemName="Race & Ethnicity - CDC" displayName="White"/>
<sdtc:raceCode code="2108-9" codeSystem="2.16.840.1.113883.6.238" codeSystemName="Race & Ethnicity - CDC" displayName="European"/>
<ethnicGroupCode code="2186-5" codeSystem="2.16.840.1.113883.6.238" codeSystemName="Race & Ethnicity - CDC" displayName="Not Hispanic or Latino"/>
<languageCommunication>
<languageCode code="en"/>
<modeCode code="ESP" codeSystem="2.16.840.1.113883.5.60" codeSystemName="LanguageAbilityMode" displayName="Expressed spoken"/>
<preferenceInd value="true"/>
</languageCommunication>
</patient>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=social_history
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.17"/>
<templateId root="2.16.840.1.113883.10.20.22.2.17" extension="2015-08-01"/>
<code code="29762-2" codeSystem="2.16.840.1.113883.6.1" displayName="Social History"/>
<title>Social History</title>
<text>
<list>
<caption>Smoking History</caption>
<item ID="SmokingStatus-6561">Smokes tobacco daily - 2015-06-22</item>
<item ID="BirthSexInfo">Female - 1970-05-01</item>
</list>
</text>
<entry typeCode="DRIV">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.78"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4" displayName="Assertion"/>
<text>
<reference value="#SmokingStatus-6561"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value code="449868002" codeSystem="2.16.840.1.113883.6.96" codeSystemName="LOINC" displayName="Smokes tobacco daily" xsi:type="CD"/>
</observation>
</entry>
<entry>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.200" extension="2016-06-01"/>
<code code="76689-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#BirthSexInfo"/>
</text>
<statusCode code="completed"/>
<value code="F" codeSystem="2.16.840.1.113883.5.1" codeSystemName="AdministrativeGender" displayName="Female" xsi:type="CD">
<originalText>
<reference value="#BirthSexInfo"/>
</originalText>
</value>
</observation>
</entry>
<entry>
<observation classCode="OBS" moodCode="EVN">
<code code="72166-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>Tobacco Use</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20150622040000+0000"/>
</effectiveTime>
<value code="8517006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED CT" displayName="Former Smoker" xsi:type="CD"/>
</observation>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=problem
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.5.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.5.1" extension="2015-08-01"/>
<code code="11450-4" codeSystem="2.16.840.1.113883.6.1" displayName="Problem List"/>
<title>Problem List</title>
<text>
<list>
<item ID="Act32937">
<content ID="Problem32937">Patient encounter status</content>
</item>
<item ID="Act32938">
<content ID="Problem32938">Essential hypertension</content>
</item>
<item ID="Act32941">
<content ID="Problem32941">Fever</content>
</item>
<item ID="Act32939">
<content ID="Problem32939">Severe hypothyroidism</content>
</item>
<item ID="Act32940">
<content ID="Problem32940">Chronic rejection of renal transplant</content>
</item>
<item ID="Act32942">
<content ID="Problem32942">Overweight</content>
</item>
</list>
</text>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="08d6b553-0298-437f-9fee-64a4a990a90a"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32937"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016095828+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32937"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32937"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20191016095828+0000"/>
</effectiveTime>
<value code="305058001" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Patient encounter status" xsi:type="CD">
<translation code="V70.0" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Routine general medical examination at a health care facility"/>
<translation code="Z00.00" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Encounter for general adult medical examination without abnormal findings"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="63803fed-67dd-4f38-b4e0-e2433692a601"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32938"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016101051+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32938"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32938"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20111005040000+0000"/>
</effectiveTime>
<value code="59621000" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Essential hypertension" xsi:type="CD">
<translation code="401.9" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Unspecified essential hypertension"/>
<translation code="I10" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Essential (primary) hypertension"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="29014aa7-83d5-4d58-9069-1d7060e3d005"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32941"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016101210+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32941"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32941"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20150622040000+0000"/>
</effectiveTime>
<value code="386661006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Fever" xsi:type="CD">
<translation code="780.60" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Fever, unspecified"/>
<translation code="R50.9" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Fever, unspecified"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="0d41ad6a-448d-44b4-b4f6-954d3e39acc0"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32939"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016101114+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32939"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32939"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20061231050000+0000"/>
</effectiveTime>
<value code="83986005" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Severe hypothyroidism" xsi:type="CD">
<translation code="244.8" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Other specified acquired hypothyroidism"/>
<translation code="E03.8" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Other specified hypothyroidism"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="c2a54c29-10eb-49e0-906e-f3871fca8579"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32940"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016101151+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32940"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32940"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20111231050000+0000"/>
</effectiveTime>
<value code="236578006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Chronic rejection of renal transplant" xsi:type="CD">
<translation code="996.81" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Complications of transplanted kidney"/>
<translation code="T86.11" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Kidney transplant rejection"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="a5747376-6a5a-45c8-a29d-469cfbec37c1"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32942"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20191016101224+0000"/>
<high value="20191101185630+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32942"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32942"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20061231050000+0000"/>
<high value="20070601040000+0000"/>
</effectiveTime>
<value code="238131007" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Overweight" xsi:type="CD">
<translation code="278.02" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Overweight"/>
<translation code="E66.3" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Overweight"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=medication
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.1.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.1.1" extension="2014-06-09"/>
<code code="10160-0" codeSystem="2.16.840.1.113883.6.1" displayName="History of medication use"/>
<title>MEDICATIONS</title>
<text>
<list>
<item ID="MedicationAct0">
<content ID="medication0">Aranesp (in polysorbate) 500 mcg/mL syringe, 1, syringe, once a week, Active</content>
</item>
<item ID="MedicationAct1">
<content ID="medication1">ceftriaxone 10 gram recon soln, 1, vial, twice a day, Active</content>
</item>
<item ID="MedicationAct2">
<content ID="medication2">Tylenol Extra Strength 500 mg tablet, 1, tablet, Active</content>
</item>
</list>
</text>
<entry typeCode="DRIV">
<substanceAdministration classCode="SBADM" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.16"/>
<templateId root="2.16.840.1.113883.10.20.22.4.16" extension="2014-06-09"/>
<id root="36a066e7-25c1-49e0-a7f8-d123b3f43362"/>
<text>
<reference value="#medication0"/>
</text>
<statusCode code="active"/>
<effectiveTime value="20150622"/>
<effectiveTime operator="A" xsi:type="PIVL_TS">
<period value="1.0" unit="wk"/>
</effectiveTime>
<routeCode code="C28161" codeSystem="2.16.840.1.113883.3.26.1.1" codeSystemName="NCI Thesaurus" displayName="Intramuscular injection"/>
<doseQuantity value="1.0" unit="syringe"/>
<consumable>
<manufacturedProduct classCode="MANU">
<templateId root="2.16.840.1.113883.10.20.22.4.23"/>
<templateId root="2.16.840.1.113883.10.20.22.4.23" extension="2014-06-09"/>
<manufacturedMaterial>
<code code="731241" codeSystem="2.16.840.1.113883.6.88" codeSystemName="RxNorm" displayName="Aranesp (in polysorbate) 500 mcg/mL syringe"/>
</manufacturedMaterial>
</manufacturedProduct>
</consumable>
</substanceAdministration>
</entry>
<entry typeCode="DRIV">
<substanceAdministration classCode="SBADM" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.16"/>
<templateId root="2.16.840.1.113883.10.20.22.4.16" extension="2014-06-09"/>
<id root="7a0de63a-ba3b-40ff-8727-a5a3e10e18d1"/>
<text>
<reference value="#medication1"/>
</text>
<statusCode code="active"/>
<effectiveTime nullFlavor="NI"/>
<effectiveTime operator="A" xsi:type="PIVL_TS">
<period value="0.5" unit="d"/>
</effectiveTime>
<routeCode code="C28161" codeSystem="2.16.840.1.113883.3.26.1.1" codeSystemName="NCI Thesaurus" displayName="Intramuscular injection"/>
<doseQuantity value="1.0" unit="vial"/>
<consumable>
<manufacturedProduct classCode="MANU">
<templateId root="2.16.840.1.113883.10.20.22.4.23"/>
<templateId root="2.16.840.1.113883.10.20.22.4.23" extension="2014-06-09"/>
<manufacturedMaterial>
<code code="309090" codeSystem="2.16.840.1.113883.6.88" codeSystemName="RxNorm" displayName="ceftriaxone 10 gram recon soln"/>
</manufacturedMaterial>
</manufacturedProduct>
</consumable>
</substanceAdministration>
</entry>
<entry typeCode="DRIV">
<substanceAdministration classCode="SBADM" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.16"/>
<templateId root="2.16.840.1.113883.10.20.22.4.16" extension="2014-06-09"/>
<id root="6d544a27-39c6-4182-88fb-3298c3fe9b13"/>
<text>
<reference value="#medication2"/>
</text>
<statusCode code="active"/>
<effectiveTime nullFlavor="NI"/>
<routeCode code="C38288" codeSystem="2.16.840.1.113883.3.26.1.1" codeSystemName="NCI Thesaurus" displayName="ORAL"/>
<doseQuantity value="1.0" unit="tablet"/>
<consumable>
<manufacturedProduct classCode="MANU">
<templateId root="2.16.840.1.113883.10.20.22.4.23"/>
<templateId root="2.16.840.1.113883.10.20.22.4.23" extension="2014-06-09"/>
<manufacturedMaterial>
<code code="209459" codeSystem="2.16.840.1.113883.6.88" codeSystemName="RxNorm" displayName="Tylenol Extra Strength 500 mg tablet"/>
</manufacturedMaterial>
</manufacturedProduct>
</consumable>
</substanceAdministration>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=allergy
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.6.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.6.1" extension="2015-08-01"/>
<code code="48765-2" codeSystem="2.16.840.1.113883.6.1" displayName="Allergies, adverse reactions, alerts"/>
<title>ALLERGIES AND ADVERSE REACTIONS</title>
<text>
<list>
<item>
<content ID="medicationef13408c375a49eeab476d0de54d6e59">Ampicillin</content>
</item>
<item>
<content ID="medication3052fdf18d0747ab86674349b6f5abfe">Penicillin G benzathine</content>
</item>
</list>
</text>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.30"/>
<templateId root="2.16.840.1.113883.10.20.22.4.30" extension="2015-08-01"/>
<id root="63532275-6709-451c-83ee-2ca4fc7c4464"/>
<code code="48765-2" codeSystem="2.16.840.1.113883.6.1" displayName="Allergies, adverse reactions, alerts"/>
<statusCode code="active"/>
<effectiveTime>
<low value="19801005"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.7"/>
<templateId root="2.16.840.1.113883.10.20.22.4.7" extension="2014-06-09"/>
<id root="c5cceba1-11ba-4096-abdf-345253de14b8"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4" displayName="Assertion"/>
<statusCode code="completed"/>
<effectiveTime>
<low value="19801005"/>
</effectiveTime>
<value code="419511003" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Propensity to adverse reaction to drug" xsi:type="CD"/>
<participant typeCode="CSM">
<participantRole classCode="MANU">
<playingEntity classCode="MMAT">
<code code="313800" codeSystem="2.16.840.1.113883.6.88" codeSystemName="RxNorm" displayName="Ampicillin">
<originalText>
<reference value="#medicationef13408c375a49eeab476d0de54d6e59"/>
</originalText>
</code>
</playingEntity>
</participantRole>
</participant>
<entryRelationship typeCode="MFST" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.9"/>
<id root="32b18459-49c4-46af-b60a-1568692206dc"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
<statusCode code="completed"/>
<value code="247472004" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Hives" xsi:type="CD"/>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.8"/>
<code code="SEV" codeSystem="2.16.840.1.113883.5.4"/>
<statusCode code="completed"/>
<value code="6736007" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Moderate" xsi:type="CD"/>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.30"/>
<templateId root="2.16.840.1.113883.10.20.22.4.30" extension="2015-08-01"/>
<id root="e1e3a02a-42cb-4146-ac59-782e127c4d4e"/>
<code code="48765-2" codeSystem="2.16.840.1.113883.6.1" displayName="Allergies, adverse reactions, alerts"/>
<statusCode code="active"/>
<effectiveTime>
<low value="19801005"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.7"/>
<templateId root="2.16.840.1.113883.10.20.22.4.7" extension="2014-06-09"/>
<id root="700c8ec9-06f7-42ee-8b68-bd0268013be9"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4" displayName="Assertion"/>
<statusCode code="completed"/>
<effectiveTime>
<low value="19801005"/>
</effectiveTime>
<value code="419511003" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Propensity to adverse reaction to drug" xsi:type="CD"/>
<participant typeCode="CSM">
<participantRole classCode="MANU">
<playingEntity classCode="MMAT">
<code code="745302" codeSystem="2.16.840.1.113883.6.88" codeSystemName="RxNorm" displayName="Penicillin G benzathine">
<originalText>
<reference value="#medication3052fdf18d0747ab86674349b6f5abfe"/>
</originalText>
</code>
</playingEntity>
</participantRole>
</participant>
<entryRelationship typeCode="MFST" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.9"/>
<id root="c2f0a7c0-e9d2-4ae1-9c3e-166b8c9ef959"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
<statusCode code="completed"/>
<value code="247472004" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Hives" xsi:type="CD"/>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.8"/>
<code code="SEV" codeSystem="2.16.840.1.113883.5.4"/>
<statusCode code="completed"/>
<value code="6736007" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Moderate" xsi:type="CD"/>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
</act>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=result
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.3.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.3.1" extension="2015-08-01"/>
<code code="30954-2" codeSystem="2.16.840.1.113883.6.1" displayName="Relevant diagnostic tests and/or laboratory data"/>
<title>Results</title>
<text>
<list>
<item ID="ResultOrganizer0">
<content ID="ResultObservation0.0">Protein[Mass/volume] in urine by test strip</content>
</item>
<item ID="ResultOrganizer1">
<content ID="ResultObservation1.0">Ketones[Mass/volume] in urine by test strip</content>
</item>
<item ID="ResultOrganizer2">
<content ID="ResultObservation2.0">Glucose[Mass/volume] in urine by test strip</content>
</item>
<item ID="ResultOrganizer3">
<content ID="ResultObservation3.0">pH of Urine by Test strip</content>
</item>
<item ID="ResultOrganizer4">
<content ID="ResultObservation4.0">Specific gravity of Urine by Test strip</content>
</item>
<item ID="ResultOrganizer5">
<content ID="ResultObservation5.0">Appearance of Urine</content>
</item>
<item ID="ResultOrganizer6">
<content ID="ResultObservation6.0">Color of Urine</content>
</item>
</list>
</text>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="6c7ce2cf-e49a-46cd-be7e-8ffc3b1d4749"/>
<code displayName="Protein[Mass/volume] in urine by test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="c43cb098-2eeb-4f6f-9981-b8e239fe2bc6"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation0.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value value="100.0" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="816871aa-0642-4580-b7fb-784555af6bb5"/>
<code displayName="Ketones[Mass/volume] in urine by test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="9c845bf4-790f-4059-b571-584c25282f3a"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation1.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value xsi:type="ST">Negative</value>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="d093ab78-3af5-435e-994e-d51addfe55ab"/>
<code displayName="Glucose[Mass/volume] in urine by test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="622fa799-5597-457e-8f39-df85502ad171"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation2.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value value="50.0" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="7862a405-a8eb-417c-b2f4-15baaf2f9209"/>
<code displayName="pH of Urine by Test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="2f179a26-0e3c-44b6-8aab-6c9ecd777f8c"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation3.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value value="5.0" xsi:type="PQ"/>
<referenceRange>
<observationRange>
<value xsi:type="IVL_PQ">
<low value="5.0"/>
<high value="8.0"/>
</value>
</observationRange>
</referenceRange>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="7e75fa8f-9bee-4cc6-a397-a53d0827f9c1"/>
<code displayName="Specific gravity of Urine by Test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="37df07cd-c3fb-4fea-a135-6aa79c76a8fd"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation4.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value value="1.015" xsi:type="PQ"/>
<referenceRange>
<observationRange>
<value xsi:type="IVL_PQ">
<low value="1.005"/>
<high value="1.03"/>
</value>
</observationRange>
</referenceRange>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="404b91ee-bc4c-449f-ab89-17b6ff1622d8"/>
<code displayName="Appearance of Urine"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="f288f2d0-be4c-4e0a-b8be-ff9561393820"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation5.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value xsi:type="ST">Clear</value>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="9c938969-60b2-42ec-b6f1-f5a91cbe0b8f"/>
<code displayName="Color of Urine"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="037da342-2426-45af-af6b-1a713367debe"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation6.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value xsi:type="ST">Yellow</value>
</observation>
</component>
</organizer>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=vital
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.4.1" extension="2015-08-01"/>
<code code="8716-3" codeSystem="2.16.840.1.113883.6.1" displayName="Vital Signs"/>
<title>Vitals</title>
<text>
<list>
<item ID="VitalOrganizer0">
<content ID="Vital0.0">inhaled-oxygen-concentration</content>
</item>
<item ID="VitalOrganizer1">
<content ID="Vital1.0">sbp</content>
<content ID="Vital1.1">dbp</content>
<content ID="Vital1.2">sbp</content>
<content ID="Vital1.3">dbp</content>
<content ID="Vital1.4">weight</content>
<content ID="Vital1.5">height</content>
<content ID="Vital1.6">sbp</content>
<content ID="Vital1.7">dbp</content>
<content ID="Vital1.8">weight</content>
<content ID="Vital1.9">heart_rate</content>
<content ID="Vital1.10">temperature</content>
<content ID="Vital1.11">respiratory_rate</content>
<content ID="Vital1.12">spo2</content>
</item>
<item ID="VitalOrganizer2">
<content ID="Vital2.0">weight</content>
</item>
<item ID="VitalOrganizer3">
<content ID="Vital3.0">weight</content>
</item>
<item ID="VitalOrganizer4">
<content ID="Vital4.0">sbp</content>
<content ID="Vital4.1">dbp</content>
</item>
</list>
</text>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.0"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20150602235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.0.0"/>
<code code="3150-0" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Inhaled oxygen concentration"/>
<text>
<reference value="#Vital0.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150602141200+0000"/>
<value value="36.0" unit="%" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20150622235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.0"/>
<code code="8480-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Systolic blood pressure"/>
<text>
<reference value="#Vital1.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622201900+0000"/>
<value value="145.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.1"/>
<code code="8462-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Diastolic blood pressure"/>
<text>
<reference value="#Vital1.1"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622201900+0000"/>
<value value="88.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.2"/>
<code code="8480-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Systolic blood pressure"/>
<text>
<reference value="#Vital1.2"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622201800+0000"/>
<value value="145.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.3"/>
<code code="8462-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Diastolic blood pressure"/>
<text>
<reference value="#Vital1.3"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622201800+0000"/>
<value value="88.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.4"/>
<code code="29463-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body weight"/>
<text>
<reference value="#Vital1.4"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622140500+0000"/>
<value value="88.0" unit="kg" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.5"/>
<code code="8302-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body height"/>
<text>
<reference value="#Vital1.5"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622140500+0000"/>
<value value="177.0" unit="cm" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.6"/>
<code code="8480-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Systolic blood pressure"/>
<text>
<reference value="#Vital1.6"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="88.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.7"/>
<code code="8462-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Diastolic blood pressure"/>
<text>
<reference value="#Vital1.7"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="145.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.8"/>
<code code="29463-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body weight"/>
<text>
<reference value="#Vital1.8"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="88.0" unit="kg" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.9"/>
<code code="8867-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Heart Rate"/>
<text>
<reference value="#Vital1.9"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="80.0" unit="/min" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.10"/>
<code code="8310-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body Temperature"/>
<text>
<reference value="#Vital1.10"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="38.0" unit="Cel" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.11"/>
<code code="9279-1" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Respiratory Rate"/>
<text>
<reference value="#Vital1.11"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="18.0" unit="/min" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.12"/>
<code code="59408-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Oxygen saturation in Arterial blood by Pulse oximetry"/>
<text>
<reference value="#Vital1.12"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="95.0" unit="%" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.2"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20150623235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.2.0"/>
<code code="29463-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body weight"/>
<text>
<reference value="#Vital2.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150623020500+0000"/>
<value value="88.0" unit="kg" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.3"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20191016235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.3.0"/>
<code code="29463-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body weight"/>
<text>
<reference value="#Vital3.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20191016040000+0000"/>
<value value="88.0" unit="kg" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.4"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20200708235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.4.0"/>
<code code="8480-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Systolic blood pressure"/>
<text>
<reference value="#Vital4.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20200708040000+0000"/>
<value value="145.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.4.1"/>
<code code="8462-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Diastolic blood pressure"/>
<text>
<reference value="#Vital4.1"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20200708040000+0000"/>
<value value="88.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=procedures
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.7.1"/>
<code code="47519-4" codeSystem="2.16.840.1.113883.6.1" displayName="History of Procedures"/>
<title>PROCEDURES</title>
<text>
<list>
<item>
<content ID="procedure4">Nebulizer Therapy</content>
</item>
<item>
<content ID="procedure5">Introduction of cardiac pacemaker system via vein</content>
</item>
</list>
</text>
<entry>
<procedure classCode="PROC" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.14"/>
<id root="Procedure-4"/>
<code code="56251003" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Nebulizer Therapy"/>
<text>
<reference value="#procedure4"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20150622000000+0000"/>
</effectiveTime>
</procedure>
</entry>
<entry>
<procedure classCode="PROC" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.14"/>
<id root="Procedure-5"/>
<code code="175135009" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Introduction of cardiac pacemaker system via vein"/>
<text>
<reference value="#procedure5"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20111005000000+0000"/>
</effectiveTime>
</procedure>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=immunization
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.2"/>
<code code="11369-6" codeSystem="2.16.840.1.113883.6.1" displayName="Immunizations"/>
<title>IMMUNIZATIONS</title>
<text>
<list>
<item>
<content ID="immunization6217">Influenza Vaccine counseled 2015-06-22 04:00:00 UTC</content>
</item>
<item>
<content ID="immunization6216">Tetanus (Td) administered 2012-01-04 05:00:00 UTC</content>
</item>
</list>
</text>
<entry typeCode="DRIV">
<substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
<templateId root="2.16.840.1.113883.10.20.22.4.52"/>
<id root="71e996bc-04d3-4571-803f-c96e86a83144"/>
<text>
<reference value="#immunization6216"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20120104050000+0000" xsi:type="IVL_TS"/>
<routeCode code="C28161" codeSystem="2.16.840.1.113883.3.26.1.1" codeSystemName="NCI Thesaurus" displayName="Intramuscular injection"/>
<consumable>
<manufacturedProduct classCode="MANU">
<templateId root="2.16.840.1.113883.10.20.22.4.54"/>
<manufacturedMaterial>
<code code="196" codeSystem="2.16.840.1.113883.12.292" codeSystemName="CVX" displayName="Td, adsorbed, preservative free, adult use, Lf unspecified"/>
<lotNumberText>456</lotNumberText>
</manufacturedMaterial>
</manufacturedProduct>
</consumable>
</substanceAdministration>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=medical equipment
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.23"/>
<code code="46264-8" codeSystem="2.16.840.1.113883.6.1" displayName="Medical Equipment"/>
<title>Implants</title>
<text>
<list>
<item>
<content ID="procedure_6">Cardiac resynchronization therapy implantable pacemaker</content>
</item>
</list>
</text>
<entry>
<procedure classCode="PROC" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.14"/>
<id root="1.2.840.114350.1.13.5552.1.7.2.737780" extension="2744"/>
<code nullFlavor="UNK"/>
<statusCode code="active"/>
<effectiveTime>
<low value="20111005000000+0000"/>
</effectiveTime>
<participant typeCode="DEV">
<participantRole classCode="MANU">
<templateId root="2.16.840.1.113883.10.20.22.4.37"/>
<id root="2.16.840.1.113883.3.3719" extension="(01)00643169007222(17)160128(21)BLC200461H"/>
<playingDevice>
<code codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Cardiac resynchronization therapy implantable pacemaker">
<originalText>
<reference value="#procedure_6"/>
</originalText>
</code>
</playingDevice>
<scopingEntity>
<id root="2.16.840.1.113883.3.3719"/>
</scopingEntity>
</participantRole>
</participant>
</procedure>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=assessment
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.8"/>
<code code="51848-0" codeSystem="2.16.840.1.113883.6.1" displayName="Assessments"/>
<title>ASSESSMENTS</title>
<text>
<list>
<item ID="Assessment-c992178a-95d4-4c8e-9945-32ad916645d0">The patient was found to have fever and Dr Davis is suspecting Anemia based on the patient history. So Dr Davis asked the patient to closely monitor the temperature and blood pressure and get admitted to Community Health Hospitals if the fever does not subside within a day.                                   Get an EKG done on 6/23/2015.Get a Chest X-ray done on 6/23/2015 showing the Lower Respiratory Tract Structure.Take Clindamycin 300mg three times a day as needed if pain does not subside/Schedule follow on visit with Neighborhood Physicians Practice on 7/1/2015.</item>
</list>
</text>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=plan_of_treatment
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.10"/>
<code code="18776-5" codeSystem="2.16.840.1.113883.6.1" displayName="Plan of Care"/>
<title>Plan of Treatment</title>
<text>
<list>
<item ID="PlannedObservation7a8da4f2-b8e1-439f-a8dd-40091dd88452">i. Get an EKG done on 6/23/2015.ii. Get a Chest X-ray done on 6/23/2015 showing the Lower Respiratory TractStructure.iii. Take Clindamycin 300mg three times a day as needed if pain does not subside/iv. Schedule follow on visit with Neighborhood Physicians Practice on7/1/2015.</item>
</list>
</text>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=goal
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.60"/>
<code code="61146-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Goals"/>
<title>Goal Section</title>
<text>
<list>
<item ID="Goals"><div>Chronic Sickness exhibited by patient</div><div>HealthCare Concerns refer to underlying clinical facts</div><ol><li>Documented HyperTension problem</li><li>Documented HypoThyroidism problem</li><li>Watch Weight of the patient</li></ol></item>
</list>
</text>
<entry>
<observation classCode="OBS" moodCode="GOL">
<templateId root="2.16.840.1.113883.10.20.22.4.121"/>
<id nullFlavor="UNK"/>
<code code="UNK"/>
<text>
<reference value="#Goals"/>
</text>
<statusCode code="active"/>
</observation>
</entry>
</section>
[REQUIRED] The ID of the patient
[REQUIRED] The name of the section
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccd_sections?patient_guid=1209bf4f506f4bb08b87a11b9f86d063§ion=health_concern
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.58" extension="2015-08-01"/>
<code code="75310-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Health Concerns Document"/>
<title>Health Concerns Section</title>
<text>
<list>
<item ID="PatientSummaryConcern"><ol><li>Get rid of intermittent fever that is occurring every few weeks.</li><li>Need to gain more energy to do regular activities</li></ol></item>
<item ID="HealthSummaryConcern"><div>Chronic Sickness exhibited by patient</div><div>HealthCare Concerns refer to underlying clinical facts</div><ol><li>Documented HyperTension problem</li><li>Documented HypoThyroidism problem</li><li>Watch Weight of the patient</li></ol></item>
</list>
</text>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.132" extension="2015-08-01"/>
<id nullFlavor="UNK"/>
<code code="75310-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Health Concern"/>
<text>
<reference value="#PatientSummaryConcern"/>
</text>
<statusCode code="active"/>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.132" extension="2015-08-01"/>
<id nullFlavor="UNK"/>
<code code="75310-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Health Concern"/>
<text>
<reference value="#HealthSummaryConcern"/>
</text>
<statusCode code="active"/>
</act>
</entry>
</section>
This is a FHIR endpoint
[REQUIRED] The ID of the patient
[REQUIRED] The status of the care team
GET production.icisapp.com/api/v1/fhir/CareTeam.json?patient=1209bf4f506f4bb08b87a11b9f86d063&status=active
{
"type": "searchset",
"timestamp": "2020-07-17T20:37:32+00:00",
"total": 1,
"entry": [
{
"fullUrl": "https://production.icisapp.com/api/v1/fhir/Care Team/1902",
"resource": {
"id": 1902,
"status": "active",
"participant": [
{
"id": "1209bf4f506f4bb08b87a11b9f86d063",
"role": [
{
"system": "http://snomed.info/sct",
"code": 116154003,
"display": "Patient"
}
],
"member": {
"reference": "Patient",
"display": "Alice Newman"
}
},
{
"id": "2bc3dae3a7ae4d6681470b804422f98b",
"role": [
{
"system": "http://snomed.info/sct",
"code": 432100008,
"display": "Health Coach"
}
],
"member": {
"reference": "Health Coach",
"display": "Tracy Davis"
}
},
{
"id": "ce6327b1844b42108e9f82b135dc956e",
"role": [
{
"system": "http://snomed.info/sct",
"code": 446050000,
"display": "PCP - Primary Care Physician"
}
],
"member": {
"reference": "Provider",
"display": "Albert Davis"
}
},
{
"id": "818babfae81f48088d2ae5483d073fea",
"role": [
{
"system": "http://snomed.info/sct",
"code": 224598009,
"display": "Trained social worker counselor"
}
],
"member": {
"reference": "Licensed Social Worker",
"display": "Abby Donahue"
}
},
{
"id": "474b55eaecf54cd9980cbb30c90a47f2",
"role": [
{
"system": "http://snomed.info/sct",
"code": 224583007,
"display": "Behavior Therapist"
}
],
"member": {
"reference": "Behavioral Health Specialist",
"display": "Chris Vossler"
}
}
],
"resourceType": "CareTeam"
}
}
],
"resourceType": "Bundle"
}
Generate a Full CCD for a patient given a guid
[REQUIRED] The ID of the patient
[OPTIONAL] The beginning of the date range of the requested data
[OPTIONAL] The end of the date range of the requested data
GET production.icisapp.com/api/xml/ccds?patient_guid=1209bf4f506f4bb08b87a11b9f86d063&start_date=1990-01-01&end_date=2021-07-02
<?xml version="1.0"?>
<ClinicalDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:hl7-org:v3" xmlns:voc="urn:hl7-org:v3/voc" xmlns:sdtc="urn:hl7-org:sdtc">
<realmCode code="US"/>
<typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"/>
<templateId root="2.16.840.1.113883.10.20.22.1.1"/>
<templateId root="2.16.840.1.113883.10.20.22.1.1" extension="2015-08-01"/>
<templateId root="2.16.840.1.113883.10.20.22.1.2"/>
<templateId root="2.16.840.1.113883.10.20.22.1.2" extension="2015-08-01"/>
<id root="TT101" extension="2.16.840.1.113883.19.5.99999.1"/>
<code code="34133-9" codeSystem="2.16.840.1.113883.6.1" displayName="Summarization of Episode Note"/>
<title>Data for Alice Newman, starting 01/01/1990, ending 07/02/2020</title>
<effectiveTime value="20200717202542+0000"/>
<confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25" codeSystemName="Confidentiality" displayName="normal"/>
<languageCode code="en"/>
<recordTarget>
<patientRole>
<id root="2.16.840.1.113883.19.5.99999.2" extension="998991"/>
<addr>
<country>US</country>
<state>OR</state>
<city>Beaverton</city>
<postalCode>97006</postalCode>
<streetAddressLine>1357, Amber Dr</streetAddressLine>
</addr>
<telecom value="555-777-1234" use="MC"/>
<patient>
<name>
<family>Newman</family>
<given>Alice</given>
<given>Jones</given>
<given qualifier="BR">Alicia</given>
</name>
<administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1" codeSystemName="AdministrativeGender" displayName="Female"/>
<birthTime value="19700501"/>
<raceCode code="2106-3" codeSystem="2.16.840.1.113883.6.238" codeSystemName="Race & Ethnicity - CDC" displayName="White"/>
<sdtc:raceCode code="2108-9" codeSystem="2.16.840.1.113883.6.238" codeSystemName="Race & Ethnicity - CDC" displayName="European"/>
<ethnicGroupCode code="2186-5" codeSystem="2.16.840.1.113883.6.238" codeSystemName="Race & Ethnicity - CDC" displayName="Not Hispanic or Latino"/>
<languageCommunication>
<languageCode code="en"/>
<modeCode code="ESP" codeSystem="2.16.840.1.113883.5.60" codeSystemName="LanguageAbilityMode" displayName="Expressed spoken"/>
<preferenceInd value="true"/>
</languageCommunication>
</patient>
</patientRole>
</recordTarget>
<author>
<time value="20191016"/>
<assignedAuthor>
<id root="2.16.840.1.113883.4.6" extension="99999999"/>
<code code="200000000X" codeSystem="2.16.840.1.113883.6.101" displayName="Iora Central"/>
<addr>
<country>US</country>
<state>MA</state>
<city>Boston</city>
<postalCode>02108</postalCode>
<streetAddressLine>101 Tremont St</streetAddressLine>
</addr>
<telecom value="765-496-8738" use="WP"/>
<assignedPerson>
<name>
<family>Davis</family>
<given>Albert</given>
</name>
</assignedPerson>
</assignedAuthor>
</author>
<custodian>
<assignedCustodian>
<representedCustodianOrganization>
<id root="2.16.840.1.113883.4.6" extension="99999999"/>
<name>Iora Health</name>
<telecom value="617-454-4672" use="WP"/>
<addr>
<country>US</country>
<state>MA</state>
<city>Boston</city>
<postalCode>02108</postalCode>
<streetAddressLine>101 Tremont Street, 6th Floor</streetAddressLine>
</addr>
</representedCustodianOrganization>
</assignedCustodian>
</custodian>
<documentationOf>
<serviceEvent classCode="PCPR">
<effectiveTime>
<low value="19900101" inclusive="true"/>
<high value="20200702" inclusive="true"/>
</effectiveTime>
</serviceEvent>
</documentationOf>
<component>
<structuredBody>
<component>
<section nullFlavor="NI">
<templateId root="2.16.840.1.113883.10.20.22.2.6.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.6.1" extension="2015-08-01"/>
<code code="48765-2" codeSystem="2.16.840.1.113883.6.1" displayName="Allergies, adverse reactions, alerts"/>
<title>ALLERGIES AND ADVERSE REACTIONS</title>
<text>
<list>
<item>
<content>No Allergy Information</content>
</item>
</list>
</text>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.8"/>
<code code="51848-0" codeSystem="2.16.840.1.113883.6.1" displayName="Assessments"/>
<title>ASSESSMENTS</title>
<text>
<list>
<item ID="Assessment-c992178a-95d4-4c8e-9945-32ad916645d0">The patient was found to have fever and Dr Davis is suspecting Anemia based on the patient history. So Dr Davis asked the patient to closely monitor the temperature and blood pressure and get admitted to Community Health Hospitals if the fever does not subside within a day.                                   Get an EKG done on 6/23/2015.Get a Chest X-ray done on 6/23/2015 showing the Lower Respiratory Tract Structure.Take Clindamycin 300mg three times a day as needed if pain does not subside/Schedule follow on visit with Neighborhood Physicians Practice on 7/1/2015.</item>
</list>
</text>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.22"/>
<code code="46240-8" codeSystem="2.16.840.1.113883.6.1" displayName="Encounters"/>
<title>ENCOUNTERS</title>
<text>
<list>
<item ID="Encounter2675">
<content ID="EncounterDiagnosis32941">Fever</content>
</item>
</list>
</text>
<entry>
<encounter classCode="ENC" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.49"/>
<id root="a04dccbf-0f4d-4bd8-b6ea-5f9c41a6865f"/>
<code code="99213" codeSystem="2.16.840.1.113883.6.12" codeSystemName="CPT-4" displayName="Office outpatient visit">
<originalText>
<reference value="#Encounter2675"/>
</originalText>
</code>
<effectiveTime>
<low value="20191016040000+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.80"/>
<id root="9a32e2a7-4993-45d3-84f1-7038d2a7da32"/>
<code code="29308-4" codeSystem="2.16.840.1.113883.6.1" displayName="Diagnosis"/>
<effectiveTime>
<low value="20191016040000+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="e4e585d5-b46f-4ff3-9af2-fa216e42ef90"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#EncounterDiagnosis32941"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20150622040000+0000"/>
</effectiveTime>
<value code="386661006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Fever" xsi:type="CD">
<translation code="780.60" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Fever, unspecified"/>
<translation code="R50.9" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Fever, unspecified"/>
</value>
</observation>
</entryRelationship>
</act>
</entryRelationship>
</encounter>
</entry>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.14"/>
<code code="47420-5" codeSystem="2.16.840.1.113883.6.1" displayName="Functional Status"/>
<title>Functional Status</title>
<text>
<list>
<item>Dependence on cane</item>
</list>
</text>
</section>
</component>
<component>
<section nullFlavor="NI">
<templateId root="2.16.840.1.113883.10.20.22.2.60"/>
<code code="61146-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Goals"/>
<title>Goal Section</title>
<text>
<list>
<item>No Goals</item>
</list>
</text>
</section>
</component>
<component>
<section nullFlavor="NI">
<templateId root="2.16.840.1.113883.10.20.22.2.58" extension="2015-08-01"/>
<code code="75310-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Health Concerns Document"/>
<title>Health Concerns Section</title>
<text>
<list>
<item>No Health Concerns</item>
</list>
</text>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.2"/>
<code code="11369-6" codeSystem="2.16.840.1.113883.6.1" displayName="Immunizations"/>
<title>IMMUNIZATIONS</title>
<text>
<list>
<item>
<content ID="immunization6217">Influenza Vaccine counseled 2015-06-22 04:00:00 UTC</content>
</item>
<item>
<content ID="immunization6216">Tetanus (Td) administered 2012-01-04 05:00:00 UTC</content>
</item>
</list>
</text>
<entry typeCode="DRIV">
<substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
<templateId root="2.16.840.1.113883.10.20.22.4.52"/>
<id root="e096e2f8-5c33-44fe-95bf-44cf5eed010b"/>
<text>
<reference value="#immunization6216"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20120104050000+0000" xsi:type="IVL_TS"/>
<routeCode code="C28161" codeSystem="2.16.840.1.113883.3.26.1.1" codeSystemName="NCI Thesaurus" displayName="Intramuscular injection"/>
<consumable>
<manufacturedProduct classCode="MANU">
<templateId root="2.16.840.1.113883.10.20.22.4.54"/>
<manufacturedMaterial>
<code code="196" codeSystem="2.16.840.1.113883.12.292" codeSystemName="CVX" displayName="Td, adsorbed, preservative free, adult use, Lf unspecified"/>
<lotNumberText>456</lotNumberText>
</manufacturedMaterial>
</manufacturedProduct>
</consumable>
</substanceAdministration>
</entry>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.23"/>
<code code="46264-8" codeSystem="2.16.840.1.113883.6.1" displayName="Medical Equipment"/>
<title>Implants</title>
<text>
<list>
<item>
<content ID="procedure_6">Cardiac resynchronization therapy implantable pacemaker</content>
</item>
</list>
</text>
<entry>
<procedure classCode="PROC" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.14"/>
<id root="1.2.840.114350.1.13.5552.1.7.2.737780" extension="2744"/>
<code nullFlavor="UNK"/>
<statusCode code="active"/>
<effectiveTime>
<low value="20111005000000+0000"/>
</effectiveTime>
<participant typeCode="DEV">
<participantRole classCode="MANU">
<templateId root="2.16.840.1.113883.10.20.22.4.37"/>
<id root="2.16.840.1.113883.3.3719" extension="(01)00643169007222(17)160128(21)BLC200461H"/>
<playingDevice>
<code codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Cardiac resynchronization therapy implantable pacemaker">
<originalText>
<reference value="#procedure_6"/>
</originalText>
</code>
</playingDevice>
<scopingEntity>
<id root="2.16.840.1.113883.3.3719"/>
</scopingEntity>
</participantRole>
</participant>
</procedure>
</entry>
</section>
</component>
<component>
<section nullFlavor="NI">
<templateId root="2.16.840.1.113883.10.20.22.2.1.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.1.1" extension="2014-06-09"/>
<code code="10160-0" codeSystem="2.16.840.1.113883.6.1" displayName="History of medication use"/>
<title>MEDICATIONS</title>
<text>
<list>
<item>
<content>No Medications</content>
</item>
</list>
</text>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.56" extension="2015-08-01"/>
<code code="10190-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="MENTAL STATUS"/>
<title>MENTAL STATUS</title>
<text>
<list>
<item>Dementia or impaired memory (amnesia)</item>
</list>
</text>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.10"/>
<code code="18776-5" codeSystem="2.16.840.1.113883.6.1" displayName="Plan of Care"/>
<title>Plan of Treatment</title>
<text>
<list>
<item ID="PlannedObservation7a8da4f2-b8e1-439f-a8dd-40091dd88452">i. Get an EKG done on 6/23/2015.ii. Get a Chest X-ray done on 6/23/2015 showing the Lower Respiratory TractStructure.iii. Take Clindamycin 300mg three times a day as needed if pain does not subside/iv. Schedule follow on visit with Neighborhood Physicians Practice on7/1/2015.</item>
</list>
</text>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.5.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.5.1" extension="2015-08-01"/>
<code code="11450-4" codeSystem="2.16.840.1.113883.6.1" displayName="Problem List"/>
<title>Problem List</title>
<text>
<list>
<item ID="Act32937">
<content ID="Problem32937">Patient encounter status</content>
</item>
<item ID="Act32938">
<content ID="Problem32938">Essential hypertension</content>
</item>
<item ID="Act32941">
<content ID="Problem32941">Fever</content>
</item>
<item ID="Act32939">
<content ID="Problem32939">Severe hypothyroidism</content>
</item>
<item ID="Act32940">
<content ID="Problem32940">Chronic rejection of renal transplant</content>
</item>
<item ID="Act32942">
<content ID="Problem32942">Overweight</content>
</item>
</list>
</text>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="fbcff240-b03b-447e-861e-1a250889f681"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32937"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016095828+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32937"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32937"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20191016095828+0000"/>
</effectiveTime>
<value code="305058001" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Patient encounter status" xsi:type="CD">
<translation code="V70.0" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Routine general medical examination at a health care facility"/>
<translation code="Z00.00" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Encounter for general adult medical examination without abnormal findings"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="2411e27b-5b1a-4e48-b564-938e46081d6f"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32938"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016101051+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32938"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32938"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20111005040000+0000"/>
</effectiveTime>
<value code="59621000" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Essential hypertension" xsi:type="CD">
<translation code="401.9" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Unspecified essential hypertension"/>
<translation code="I10" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Essential (primary) hypertension"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="1f86b75f-f94d-4594-851a-9dee0258a919"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32941"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016101210+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32941"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32941"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20150622040000+0000"/>
</effectiveTime>
<value code="386661006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Fever" xsi:type="CD">
<translation code="780.60" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Fever, unspecified"/>
<translation code="R50.9" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Fever, unspecified"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="93d18cc1-db73-4a61-9871-716d7150aca3"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32939"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016101114+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32939"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32939"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20061231050000+0000"/>
</effectiveTime>
<value code="83986005" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Severe hypothyroidism" xsi:type="CD">
<translation code="244.8" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Other specified acquired hypothyroidism"/>
<translation code="E03.8" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Other specified hypothyroidism"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="827d09b7-ea51-4b11-8d53-385925d67277"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32940"/>
</text>
<statusCode code="active"/>
<effectiveTime>
<low value="20191016101151+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32940"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32940"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20111231050000+0000"/>
</effectiveTime>
<value code="236578006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Chronic rejection of renal transplant" xsi:type="CD">
<translation code="996.81" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Complications of transplanted kidney"/>
<translation code="T86.11" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Kidney transplant rejection"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3"/>
<templateId root="2.16.840.1.113883.10.20.22.4.3" extension="2015-08-01"/>
<id root="3ddb5ee1-aad1-40e3-8795-0893ca0211ba"/>
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" displayName="Concern"/>
<text>
<reference value="#Act32942"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20191016101224+0000"/>
<high value="20191101185630+0000"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<templateId root="2.16.840.1.113883.10.20.22.4.4" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.32942"/>
<code code="55607006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Problem">
<translation code="75326-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem"/>
</code>
<text>
<reference value="#Problem32942"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20061231050000+0000"/>
<high value="20070601040000+0000"/>
</effectiveTime>
<value code="238131007" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Overweight" xsi:type="CD">
<translation code="278.02" codeSystem="2.16.840.1.113883.6.103" codeSystemName="ICD-9" displayName="Overweight"/>
<translation code="E66.3" codeSystem="2.16.840.1.113883.6.90" codeSystemName="ICD-10" displayName="Overweight"/>
</value>
</observation>
</entryRelationship>
</act>
</entry>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.7.1"/>
<code code="47519-4" codeSystem="2.16.840.1.113883.6.1" displayName="History of Procedures"/>
<title>PROCEDURES</title>
<text>
<list>
<item>
<content ID="procedure5">Introduction of cardiac pacemaker system via vein</content>
</item>
<item>
<content ID="procedure4">Nebulizer Therapy</content>
</item>
</list>
</text>
<entry>
<procedure classCode="PROC" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.14"/>
<id root="Procedure-5"/>
<code code="175135009" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Introduction of cardiac pacemaker system via vein"/>
<text>
<reference value="#procedure5"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20111005000000+0000"/>
</effectiveTime>
</procedure>
</entry>
<entry>
<procedure classCode="PROC" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.14"/>
<id root="Procedure-4"/>
<code code="56251003" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED-CT" displayName="Nebulizer Therapy"/>
<text>
<reference value="#procedure4"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20150622000000+0000"/>
</effectiveTime>
</procedure>
</entry>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.3.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.3.1" extension="2015-08-01"/>
<code code="30954-2" codeSystem="2.16.840.1.113883.6.1" displayName="Relevant diagnostic tests and/or laboratory data"/>
<title>Results</title>
<text>
<list>
<item ID="ResultOrganizer0">
<content ID="ResultObservation0.0">Protein[Mass/volume] in urine by test strip</content>
</item>
<item ID="ResultOrganizer1">
<content ID="ResultObservation1.0">Ketones[Mass/volume] in urine by test strip</content>
</item>
<item ID="ResultOrganizer2">
<content ID="ResultObservation2.0">Glucose[Mass/volume] in urine by test strip</content>
</item>
<item ID="ResultOrganizer3">
<content ID="ResultObservation3.0">pH of Urine by Test strip</content>
</item>
<item ID="ResultOrganizer4">
<content ID="ResultObservation4.0">Specific gravity of Urine by Test strip</content>
</item>
<item ID="ResultOrganizer5">
<content ID="ResultObservation5.0">Appearance of Urine</content>
</item>
<item ID="ResultOrganizer6">
<content ID="ResultObservation6.0">Color of Urine</content>
</item>
</list>
</text>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="5aab4c04-c25c-4ef2-84bd-050b5b9d16af"/>
<code displayName="Protein[Mass/volume] in urine by test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="2baeefd8-db0c-4ebb-b1bd-519afa60f159"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation0.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value value="100.0" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="d2fe084f-05be-4235-a44c-d38c46329cbe"/>
<code displayName="Ketones[Mass/volume] in urine by test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="998f823a-de10-4050-a203-5d4de86a9bd7"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation1.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value xsi:type="ST">Negative</value>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="cb67f83c-c827-4950-bf8a-6e7d80c98091"/>
<code displayName="Glucose[Mass/volume] in urine by test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="709aca7d-df18-4d54-9164-f120beed0c4f"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation2.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value value="50.0" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="89da18a3-c020-4dc3-bddb-cd9a0c10ffef"/>
<code displayName="pH of Urine by Test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="3d8366ff-9f54-4a70-af5b-4cf10a5e890c"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation3.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value value="5.0" xsi:type="PQ"/>
<referenceRange>
<observationRange>
<value xsi:type="IVL_PQ">
<low value="5.0"/>
<high value="8.0"/>
</value>
</observationRange>
</referenceRange>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="31e81167-0e3c-402d-a3ea-73d34376ecc6"/>
<code displayName="Specific gravity of Urine by Test strip"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="6302d92d-6226-4b3e-9003-4a1fc64523d3"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation4.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="201 <value value="1.015" xsi:type="PQ"/>
<referenceRange>
<observationRange>
<value xsi:type="IVL_PQ">
<low value="1.005"/>
<high value="1.03"/>
</value>
</observationRange>
</referenceRange>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="be5db759-9d73-46a7-b014-7c5006daed91"/>
<code displayName="Appearance of Urine"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="56c38be4-5c1f-45d6-809a-095043965bd2"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation5.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value xsi:type="ST">Clear</value>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="BATTERY" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.4.1" extension="2015-08-01"/>
<id root="e2aa22a1-69fd-4b1a-8d2c-02c14bdf141f"/>
<code displayName="Color of Urine"/>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.2"/>
<templateId root="2.16.840.1.113883.10.20.22.4.2" extension="2015-08-01"/>
<id root="4632c21b-feb0-44be-a1be-eba96c890849"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#ResultObservation6.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622000000+0000"/>
<value xsi:type="ST">Yellow</value>
</observation>
</component>
</organizer>
</entry>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.17"/>
<templateId root="2.16.840.1.113883.10.20.22.2.17" extension="2015-08-01"/>
<code code="29762-2" codeSystem="2.16.840.1.113883.6.1" displayName="Social History"/>
<title>Social History</title>
<text>
<list>
<caption>Smoking History</caption>
<item ID="SmokingStatus-6561">Smokes tobacco daily - 2015-06-22</item>
<item ID="BirthSexInfo">Female - 1970-05-01</item>
</list>
</text>
<entry typeCode="DRIV">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.78"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4" displayName="Assertion"/>
<text>
<reference value="#SmokingStatus-6561"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value code="449868002" codeSystem="2.16.840.1.113883.6.96" codeSystemName="LOINC" displayName="Smokes tobacco daily" xsi:type="CD"/>
</observation>
</entry>
<entry>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.200" extension="2016-06-01"/>
<code code="76689-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>
<reference value="#BirthSexInfo"/>
</text>
<statusCode code="completed"/>
<value code="F" codeSystem="2.16.840.1.113883.5.1" codeSystemName="AdministrativeGender" displayName="Female" xsi:type="CD">
<originalText>
<reference value="#BirthSexInfo"/>
</originalText>
</value>
</observation>
</entry>
<entry>
<observation classCode="OBS" moodCode="EVN">
<code code="72166-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
<text>Tobacco Use</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20150622040000+0000"/>
</effectiveTime>
<value code="8517006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED CT" displayName="Former Smoker" xsi:type="CD"/>
</observation>
</entry>
</section>
</component>
<component>
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.4.1"/>
<templateId root="2.16.840.1.113883.10.20.22.2.4.1" extension="2015-08-01"/>
<code code="8716-3" codeSystem="2.16.840.1.113883.6.1" displayName="Vital Signs"/>
<title>Vitals</title>
<text>
<list>
<item ID="VitalOrganizer0">
<content ID="Vital0.0">inhaled-oxygen-concentration</content>
</item>
<item ID="VitalOrganizer1">
<content ID="Vital1.0">dbp</content>
<content ID="Vital1.1">sbp</content>
<content ID="Vital1.2">sbp</content>
<content ID="Vital1.3">dbp</content>
<content ID="Vital1.4">weight</content>
<content ID="Vital1.5">height</content>
<content ID="Vital1.6">sbp</content>
<content ID="Vital1.7">dbp</content>
<content ID="Vital1.8">weight</content>
<content ID="Vital1.9">heart_rate</content>
<content ID="Vital1.10">temperature</content>
<content ID="Vital1.11">respiratory_rate</content>
<content ID="Vital1.12">spo2</content>
</item>
<item ID="VitalOrganizer2">
<content ID="Vital2.0">weight</content>
</item>
<item ID="VitalOrganizer3">
<content ID="Vital3.0">weight</content>
</item>
</list>
</text>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.0"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20150602235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.0.0"/>
<code code="3150-0" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Inhaled oxygen concentration"/>
<text>
<reference value="#Vital0.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150602141200+0000"/>
<value value="36.0" unit="%" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20150622235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.0"/>
<code code="8462-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Diastolic blood pressure"/>
<text>
<reference value="#Vital1.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622201900+0000"/>
<value value="88.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.1"/>
<code code="8480-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Systolic blood pressure"/>
<text>
<reference value="#Vital1.1"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622201900+0000"/>
<value value="145.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.2"/>
<code code="8480-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Systolic blood pressure"/>
<text>
<reference value="#Vital1.2"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622201800+0000"/>
<value value="145.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.3"/>
<code code="8462-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Diastolic blood pressure"/>
<text>
<reference value="#Vital1.3"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622201800+0000"/>
<value value="88.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.4"/>
<code code="29463-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body weight"/>
<text>
<reference value="#Vital1.4"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622140500+0000"/>
<value value="88.0" unit="kg" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.5"/>
<code code="8302-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body height"/>
<text>
<reference value="#Vital1.5"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622140500+0000"/>
<value value="177.0" unit="cm" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.6"/>
<code code="8480-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Systolic blood pressure"/>
<text>
<reference value="#Vital1.6"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="88.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.7"/>
<code code="8462-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Diastolic blood pressure"/>
<text>
<reference value="#Vital1.7"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="145.0" unit="mm[Hg]" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.8"/>
<code code="29463-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body weight"/>
<text>
<reference value="#Vital1.8"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="88.0" unit="kg" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.9"/>
<code code="8867-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Heart Rate"/>
<text>
<reference value="#Vital1.9"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="80.0" unit="/min" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.10"/>
<code code="8310-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body Temperature"/>
<text>
<reference value="#Vital1.10"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="38.0" unit="Cel" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.11"/>
<code code="9279-1" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Respiratory Rate"/>
<text>
<reference value="#Vital1.11"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="18.0" unit="/min" xsi:type="PQ"/>
</observation>
</component>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.1.12"/>
<code code="59408-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Oxygen saturation in Arterial blood by Pulse oximetry"/>
<text>
<reference value="#Vital1.12"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150622040000+0000"/>
<value value="95.0" unit="%" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.2"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20150623235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.2.0"/>
<code code="29463-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body weight"/>
<text>
<reference value="#Vital2.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20150623020500+0000"/>
<value value="88.0" unit="kg" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
<entry>
<organizer classCode="CLUSTER" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.26"/>
<templateId root="2.16.840.1.113883.10.20.22.4.26" extension="2015-08-01"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.3"/>
<code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs">
<translation code="74728-7" codeSystem="2.16.840.1.113883.6.1" displayName="Vital signs, weight, height, head circumference, oximetry, BMI, and BSA panel - HL7.CCDAr1.1"/>
</code>
<statusCode code="completed"/>
<effectiveTime value="20191016235959+0000"/>
<component>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.27"/>
<templateId root="2.16.840.1.113883.10.20.22.4.27" extension="2014-06-09"/>
<id root="1.3.6.1.4.1.22812.4.111.0.4.1.3.0"/>
<code code="29463-7" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Body weight"/>
<text>
<reference value="#Vital3.0"/>
</text>
<statusCode code="completed"/>
<effectiveTime value="20191016040000+0000"/>
<value value="88.0" unit="kg" xsi:type="PQ"/>
</observation>
</component>
</organizer>
</entry>
</section>
</component>
<component>
<section>
<templateId root="1.3.6.1.4.1.19376.1.5.3.1.3.1"/>
<code code="42349-1" codeSystem="2.16.840.1.113883.6.1" displayName="Reason for Referral"/>
<title>REASON FOR REFERRAL</title>
<text>
<list>
<item>
<content>No information available</content>
</item>
</list>
</text>
</section>
</component>
</structuredBody>
</component>
</ClinicalDocument>