WHOOP · Schema

UnilabsCollectionAddress

The collection address for this appointment

FitnessWearablesHealthRecoverySleepWorkoutStrainHeart RatePerformance

Properties

Name Type Description
building string Building name or number
area string Area or district
emirate string Emirate
landmark string Nearby landmark
flat_no string Flat or apartment number
View JSON Schema on GitHub

JSON Schema

whoop-unilabscollectionaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-unilabscollectionaddress-schema.json",
  "title": "UnilabsCollectionAddress",
  "description": "The collection address for this appointment",
  "required": [
    "area",
    "building",
    "emirate"
  ],
  "type": "object",
  "properties": {
    "building": {
      "type": "string",
      "description": "Building name or number"
    },
    "area": {
      "type": "string",
      "description": "Area or district"
    },
    "emirate": {
      "type": "string",
      "description": "Emirate"
    },
    "landmark": {
      "type": "string",
      "description": "Nearby landmark"
    },
    "flat_no": {
      "type": "string",
      "description": "Flat or apartment number"
    }
  }
}