This page is part of the FHIR Specification (v0.11: DSTU 1 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2

Resource Roadmap - Examples 4.15.4

Example Index:

General Person ExampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON
Real-world patient exampleXMLJSON

Blood pressure 4.15.4.1

General Person Example

General Person Example (id = "example")

Raw XML

<Observation xmlns="http://hl7.org/fhir">
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml">Sept 17, 2012: Blood pressure 107/65 (normal)</div>
  </text>
  <name>
    <coding>
      <system value="http://loinc.org"/>
      <code value="55284-4"/>
      <display value="Blood pressure systolic and diastolic"/>
    </coding>
  </name>
  <interpretation>
    <coding>
      <system value="http://hl7.org/fhir/v2/0078"/>
      <code value="N"/>
      <display value="Normal (applies to non-numeric results)"/>
    </coding>
  </interpretation>
  <appliesDateTime value="2012-09-17"/>

  <status value="final"/>
  <reliability value="ok"/>
  
  <identifier>
    <system value="urn:ietf:rfc:3986"/>
    <key value="187e0c12-8dd2-67e2-99b2-bf273c878281"/>
  </identifier>
  
  <subject>
    <type value="Patient"/>
    <reference value="patient/@example"/>
  </subject>
  <performer>
    <type value="Practitioner"/>
    <reference value="practitioner/@example"/>
  </performer>
  <component>
    <name>
      <coding>
        <system value="http://loinc.org"/>
        <code value="8480-6"/>
        <display value="Systolic blood pressure"/>
      </coding>
    </name>
    <valueQuantity>
      <value value="107"/>
      <units value="mm[Hg]"/>
    </valueQuantity>
  </component>
  <component>
    <name>
      <coding>
        <system value="http://loinc.org"/>
        <code value="8462-4"/>
        <display value="Diastolic blood pressure"/>
      </coding>
    </name>
    <valueQuantity>
      <value value="65"/>
      <units value="mm[Hg]"/>
    </valueQuantity>
  </component>
</Observation>

JSON Equivalent

General Person Example

{
  "Observation":{
    "text":{
      "status":{
        "value":"generated"
      },
      "div":"<div>Sept 17, 2012: Blood pressure 107/65 (normal)<\/div>"
    },
    "name":{
      "coding":[
        {
          "system":{
            "value":"http://loinc.org"
          },
          "code":{
            "value":"55284-4"
          },
          "display":{
            "value":"Blood pressure systolic and diastolic"
          }
        }
      ]
    },
    "interpretation":{
      "coding":[
        {
          "system":{
            "value":"http://hl7.org/fhir/v2/0078"
          },
          "code":{
            "value":"N"
          },
          "display":{
            "value":"Normal (applies to non-numeric results)"
          }
        }
      ]
    },
    "appliesDateTime":{
      "value":"2012-09-17"
    },
    "status":{
      "value":"final"
    },
    "reliability":{
      "value":"ok"
    },
    "identifier":{
      "system":{
        "value":"urn:ietf:rfc:3986"
      },
      "key":{
        "value":"187e0c12-8dd2-67e2-99b2-bf273c878281"
      }
    },
    "subject":{
      "type":{
        "value":"Patient"
      },
      "reference":{
        "value":"patient/@example"
      }
    },
    "performer":{
      "type":{
        "value":"Practitioner"
      },
      "reference":{
        "value":"practitioner/@example"
      }
    },
    "component":[
      {
        "name":{
          "coding":[
            {
              "system":{
                "value":"http://loinc.org"
              },
              "code":{
                "value":"8480-6"
              },
              "display":{
                "value":"Systolic blood pressure"
              }
            }
          ]
        },
        "valueQuantity":{
          "value":{
            "value":"107"
          },
          "units":{
            "value":"mm[Hg]"
          }
        }
      },
      {
        "name":{
          "coding":[
            {
              "system":{
                "value":"http://loinc.org"
              },
              "code":{
                "value":"8462-4"
              },
              "display":{
                "value":"Diastolic blood pressure"
              }
            }
          ]
        },
        "valueQuantity":{
          "value":{
            "value":"65"
          },
          "units":{
            "value":"mm[Hg]"
          }
        }
      }
    ]
  }
}