FHIR CI-Build

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

Example Procedure/ventilator-setting (JSON)

Responsible Owner: Patient Care Work GroupStandards Status: InformativeCompartments: Encounter, Group, Patient, Practitioner, RelatedPerson

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

Example of a ventilator settings procedure

{
  "resourceType" : "Procedure",
  "id" : "ventilator-setting",
  "contained" : [{
    "resourceType" : "Device",
    "id" : "vent-device-1",
    "manufacturer" : "Medtronic, Inc",
    "lotNumber" : "1234-9876",
    "type" : [{
      "coding" : [{
        "system" : "http://snomed.info/sct",
        "code" : "40617009"
      }],
      "text" : "Ventilator, device"
    }]
  },
  {
    "resourceType" : "Observation",
    "id" : "tidal-volume-obs",
    "status" : "final",
    "code" : {
      "coding" : [{
        "system" : "http://loinc.org",
        "code" : "76222-9"
      }],
      "text" : "Tidal volume Ventilator"
    },
    "subject" : {
      "reference" : "Patient/example"
    },
    "valueQuantity" : {
      "value" : 500,
      "unit" : "mL",
      "system" : "http://unitsofmeasure.org",
      "code" : "mL"
    }
  },
  {
    "resourceType" : "Observation",
    "id" : "fio2-obs",
    "status" : "final",
    "code" : {
      "coding" : [{
        "system" : "http://loinc.org",
        "code" : "3150-0"
      }],
      "text" : "Inhaled oxygen concentration"
    },
    "subject" : {
      "reference" : "Patient/example"
    },
    "valueQuantity" : {
      "value" : 40,
      "unit" : "%",
      "system" : "http://unitsofmeasure.org",
      "code" : "%"
    }
  },
  {
    "resourceType" : "Observation",
    "id" : "peep-obs",
    "status" : "final",
    "code" : {
      "coding" : [{
        "system" : "http://loinc.org",
        "code" : "76248-4"
      }],
      "text" : "PEEP Ventilator"
    },
    "subject" : {
      "reference" : "Patient/example"
    },
    "valueQuantity" : {
      "value" : 5,
      "unit" : "cm[H2O]",
      "system" : "http://unitsofmeasure.org",
      "code" : "cm[H2O]"
    }
  }],
  "status" : "completed",
  "code" : {
    "coding" : [{
      "system" : "http://snomed.info/sct",
      "code" : "1258985005",
      "display" : "Invasive mechanical ventilation (regime/therapy)"
    }],
    "text" : "Mechanical Ventilation"
  },
  "subject" : {
    "reference" : "Patient/example"
  },
  "occurrenceDateTime" : "2015-04-05",
  "performer" : [{
    "actor" : {
      "reference" : "Practitioner/example",
      "display" : "Dr Cecil Surgeon"
    }
  }],
  "reason" : [{
    "concept" : {
      "text" : "Acute Respiratory Distress Syndrome (ARDS)"
    }
  }],
  "outcome" : [{
    "concept" : {
      "text" : "Respiratory rate 24 bpm"
    }
  },
  {
    "reference" : {
      "reference" : "#tidal-volume-obs",
      "display" : "Tidal volume 500 mL"
    }
  },
  {
    "reference" : {
      "reference" : "#fio2-obs",
      "display" : "FiO2 40%"
    }
  },
  {
    "reference" : {
      "reference" : "#peep-obs",
      "display" : "PEEP 5 cmH2O"
    }
  }],
  "followUp" : [{
    "concept" : {
      "text" : "Daily chest x-rays and ongoing ventilation monitoring"
    }
  }],
  "note" : [{
    "text" : "ARDS due to sepsis"
  }],
  "focalDevice" : [{
    "action" : {
      "coding" : [{
        "system" : "http://snomed.info/sct",
        "code" : "232679009",
        "display" : "Nasotracheal intubation (procedure)"
      }]
    },
    "manipulated" : {
      "reference" : "#vent-device-1"
    }
  }]
}

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.