{ "type": "object", "description": "Represents a conversation inbox configuration where messages are organized and routed.", "properties": { "id": { "type": "string", "description": "Unique identifier for the inbox", "example": "12345678" }, "name": { "type": "string", "description": "Display name of the inbox", "example": "Support Inbox" }, "type": { "type": "string", "description": "Type of inbox (e.g., CONVERSATIONS_INBOX)", "example": "CONVERSATIONS_INBOX" }, "createdAt": { "type": "string", "description": "ISO 8601 timestamp when the inbox was created", "format": "date-time", "example": "2024-01-10T09:00:00Z" }, "updatedAt": { "type": "string", "description": "ISO 8601 timestamp when the inbox was last updated", "format": "date-time", "example": "2024-01-15T14:30:00Z" }, "archived": { "type": "boolean", "description": "Whether the inbox is archived", "example": false } }, "required": [ "id", "name", "createdAt", "updatedAt" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Inbox" }