FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example Observation/eye-color (XML)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Encounter, Patient, Practitioner, RelatedPerson

Raw XML (canonical form + also see XML Format Specification)

Example of a very simple personal characteristic observation (id = "eye-color")

<?xml version="1.0" encoding="UTF-8"?>

<!--   A very simple example to demonstrate using a string value and Observation to
 represent a physical characteristic   --><Observation xmlns="http://hl7.org/fhir">
  <id value="eye-color"/> 
  <status value="final"/> 
  <code> 
    <text value="eye color"/> 
  </code> 
  <subject> 
    <reference value="Patient/example"/> 
  </subject> 
  <effectiveDateTime value="2016-05-18"/> 
  <valueString value="blue"/> 
</Observation> 

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