WHOOP Patient schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-patient-schema.json", "title": "Patient", "description": "WHOOP Patient schema", "required": [ "id" ], "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the patient", "format": "uuid" } } }