{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConferenceResourceRequest", "title": "ConferenceResourceRequest", "description": "Request body for a conference.", "properties": { "agentId": { "description": "The unique Id of the user logged in as an agent.", "type": "string", "format": "UUID", "example": "315fbb91-2288-427c-9588-ec764cd46ea4" }, "to": { "description": "The destination ID to consult, maximum length 36 characters.", "type": "string", "example": "315fbb91-2288-427c-9588-ec764cd46ea4" }, "destinationType": { "description": "The user can consult to another user in the team(```agent```), dial number(```dialNumber```), entry point(```entryPoint```).", "type": "string", "example": "agent" } }, "required": [ "to" ], "type": "object" }