{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserlandUser", "title": "UserlandUser", "type": "object", "properties": { "object": { "type": "string", "description": "Distinguishes the user object.", "const": "user" }, "id": { "type": "string", "description": "The unique ID of the user.", "example": "user_01E4ZCR3C56J083X43JQXF3JK5" }, "first_name": { "type": [ "string", "null" ], "description": "The first name of the user.", "example": "Marcelina" }, "last_name": { "type": [ "string", "null" ], "description": "The last name of the user.", "example": "Davis" }, "profile_picture_url": { "type": [ "string", "null" ], "description": "A URL reference to an image representing the user.", "example": "https://workoscdn.com/images/v1/123abc" }, "email": { "type": "string", "description": "The email address of the user.", "example": "marcelina.davis@example.com" }, "email_verified": { "type": "boolean", "description": "Whether the user's email has been verified.", "example": true }, "external_id": { "type": [ "string", "null" ], "description": "The external ID of the user.", "example": "f1ffa2b2-c20b-4d39-be5c-212726e11222" }, "metadata": { "type": "object", "additionalProperties": { "type": "string", "maxLength": 600 }, "description": "Object containing metadata key/value pairs associated with the user.", "example": { "timezone": "America/New_York" }, "propertyNames": { "maxLength": 40 }, "maxProperties": 50 }, "last_sign_in_at": { "format": "date-time", "type": [ "string", "null" ], "description": "The timestamp when the user last signed in.", "example": "2025-06-25T19:07:33.155Z" }, "locale": { "type": [ "string", "null" ], "description": "The user's preferred locale.", "example": "en-US" }, "created_at": { "format": "date-time", "type": "string", "description": "An ISO 8601 timestamp.", "example": "2026-01-15T12:00:00.000Z" }, "updated_at": { "format": "date-time", "type": "string", "description": "An ISO 8601 timestamp.", "example": "2026-01-15T12:00:00.000Z" } }, "required": [ "object", "id", "first_name", "last_name", "profile_picture_url", "email", "email_verified", "external_id", "last_sign_in_at", "created_at", "updated_at" ], "description": "The user object." }