{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Profile", "title": "Profile", "type": "object", "description": "An authenticated user profile.", "properties": { "id": { "type": "integer", "description": "The numeric identifier of this user", "example": 100 }, "first_name": { "type": "string", "description": "The first name of this user", "example": "Example Name" }, "last_name": { "type": "string", "description": "The last name of this user", "example": "Example Name" }, "full_name": { "type": "string", "description": "The combined full name of this user", "example": "Example Name" }, "email": { "type": "string", "format": "email", "description": "The email this user's account is associated with", "example": "user@example.com" }, "email_confirmed": { "type": "boolean", "description": "Whether said email is confirmed yet or not", "example": true }, "timezone": { "type": "string", "description": "The timezone set for this user", "example": "example-value" } }, "required": [ "email", "email_confirmed", "first_name", "full_name", "id", "last_name", "timezone" ] }