The Vital Object

Object Definition

{
  "id": 65098023184,                      // long(64)
  "bmi": 21.52,                           // decimal
  "height": [{                            // typically array of 1
    "value": "70",                        // string(10)
    "units": "inches",                    // read-only
    "note": "no shoes"                    // string(250)
  }],
  "weight": [{                            // typically array of 1
    "value": "150",                       // string(10)
    "units": "lbs",                       // read-only
    "note": "in shorts"                   // string(250)
  }],
  "oxygen": [{                            // typically array of 1
    "value": "98",                        // string(10)
    "units": "%",                         // read-only
    "note": "good"                        // string(250)
  }],
  "rr": [{                                // Respiratory Rate. typically list of 1
    "value": "20",                        // string(10)
    "units": "bpm",                       // read-only
    "note": "deep"                        // string(250)
  }],
  "hr": [{                                // Heart Rate. typically list of 1
    "value": "60",                        // string(10)
    "units": "bpm",                       // read-only
    "note": "calm"                        // string(250)
  }],
  "hc": [{                                // Head Circumference. typically list of 1
    "value": "30",                        // string(10)
    "units": "cm",                        // read-only
    "note": "big"                         // string(250)
  }],
  "temperature": [{                       // typically list of 1
    "value": "98",                        // string(10)
    "units": "f",                         // read-only
    "note": "t-shirt"                     // string(250)
  }],
  "bp": [{                                // Blood Pressure. Common to have multiple
    "systolic": "120",                    // string(10)
    "diastolic": "80",                    // string(10)
    "note": "sitting down"                // string(250)
  }],
  "pain": [{                              // Patient reported pain scale (1-10)
    "value": "none",                      // string(10)
    "note": ""                            // string(250)
  }],
  "bmi_percentile": 12,                    // read-only, int
  "length_for_weight_percentile": 20.5,    // read-only, float
  "patient": 64072843265,                  // int
  "practice": 65540,                       // int
  "visit_note": 99024920,                  // nullable, int
  "non_visit_note": null,                  // nullable, int
  "document_date": "2014-01-19T16:00:29Z", // datetime
  "chart_date": "2014-01-19T16:00:29Z",    // datetime
  "signed_date": "2014-01-19T16:00:29Z",   // datetime
  "signed_by": 131074,                     // int
  "created_date": "2016-05-02T13:30:07Z",  // datetime
  "deleted_date": null                     // datetime
}