{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-userbasicprofile-schema.json", "title": "UserBasicProfile", "description": "WHOOP UserBasicProfile schema", "required": [ "email", "first_name", "last_name", "user_id" ], "type": "object", "properties": { "user_id": { "type": "integer", "description": "The WHOOP User", "format": "int64", "example": 10129 }, "email": { "type": "string", "description": "User's Email", "example": "jsmith123@whoop.com" }, "first_name": { "type": "string", "description": "User's First Name", "example": "John" }, "last_name": { "type": "string", "description": "User's Last Name", "example": "Smith" } } }