WHOOP · Schema

CreateObservationRequest

optional list of observations to attach to the diagnostic report

FitnessWearablesHealthRecoverySleepWorkoutStrainHeart RatePerformance

Properties

Name Type Description
value_numeric number the decimal value for this observation, if there is one
value_text string the text value for this observation, if there is one
unit string the unit of this observation value, if there is one
status string the status of this observation
code string the code for this observation
View JSON Schema on GitHub

JSON Schema

whoop-createobservationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-createobservationrequest-schema.json",
  "title": "CreateObservationRequest",
  "description": "optional list of observations to attach to the diagnostic report",
  "type": "object",
  "properties": {
    "value_numeric": {
      "type": "number",
      "description": "the decimal value for this observation, if there is one",
      "format": "double"
    },
    "value_text": {
      "type": "string",
      "description": "the text value for this observation, if there is one"
    },
    "unit": {
      "type": "string",
      "description": "the unit of this observation value, if there is one"
    },
    "status": {
      "type": "string",
      "description": "the status of this observation"
    },
    "code": {
      "type": "string",
      "description": "the code for this observation"
    }
  }
}