WHOOP · Schema

SleepStreamDataPoint

WHOOP SleepStreamDataPoint schema

FitnessWearablesHealthRecoverySleepWorkoutStrainHeart RatePerformance

Properties

Name Type Description
timestamp string
hr integer
skin_temp number
board_temp number
battery_temp number
is_sleeping boolean
is_charging boolean
View JSON Schema on GitHub

JSON Schema

whoop-sleepstreamdatapoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-sleepstreamdatapoint-schema.json",
  "title": "SleepStreamDataPoint",
  "description": "WHOOP SleepStreamDataPoint schema",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "hr": {
      "type": "integer",
      "format": "int32"
    },
    "skin_temp": {
      "type": "number",
      "format": "float"
    },
    "board_temp": {
      "type": "number",
      "format": "float"
    },
    "battery_temp": {
      "type": "number",
      "format": "float"
    },
    "is_sleeping": {
      "type": "boolean"
    },
    "is_charging": {
      "type": "boolean"
    }
  }
}