WHOOP · Schema

PatientCore

Patient information

FitnessWearablesHealthRecoverySleepWorkoutStrainHeart RatePerformance

Properties

Name Type Description
id string Unique identifier for the patient
View JSON Schema on GitHub

JSON Schema

whoop-patientcore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-patientcore-schema.json",
  "title": "PatientCore",
  "description": "Patient information",
  "required": [
    "id"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the patient",
      "format": "uuid"
    }
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/Patient"
    },
    {
      "$ref": "#/components/schemas/UnilabsPatient"
    }
  ]
}