Patient information
{ "$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" } ] }