WHOOP · Schema
UnilabsPatient
WHOOP UnilabsPatient schema
FitnessWearablesHealthRecoverySleepWorkoutStrainHeart RatePerformance
Properties
| Name | Type | Description |
|---|---|---|
| first_name | string | First name of the patient |
| last_name | string | Last name of the patient |
| birth_date | string | Birth date of the patient |
| gender | string | Gender of the patient |
| string | Email address of the patient | |
| phone | string | Phone number of the patient |
| nationality | string | Nationality of the patient |
| id | string | Unique identifier for the patient |
| emirates_id | string | Emirates ID of the patient |
| passport_no | string | Passport number of the patient |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-unilabspatient-schema.json",
"title": "UnilabsPatient",
"description": "WHOOP UnilabsPatient schema",
"required": [
"birth_date",
"first_name",
"id",
"last_name"
],
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "First name of the patient"
},
"last_name": {
"type": "string",
"description": "Last name of the patient"
},
"birth_date": {
"type": "string",
"description": "Birth date of the patient",
"format": "date"
},
"gender": {
"type": "string",
"description": "Gender of the patient"
},
"email": {
"type": "string",
"description": "Email address of the patient"
},
"phone": {
"type": "string",
"description": "Phone number of the patient"
},
"nationality": {
"type": "string",
"description": "Nationality of the patient"
},
"id": {
"type": "string",
"description": "Unique identifier for the patient",
"format": "uuid"
},
"emirates_id": {
"type": "string",
"description": "Emirates ID of the patient"
},
"passport_no": {
"type": "string",
"description": "Passport number of the patient"
}
}
}