{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SkillBasedQueueRequestDTO", "title": "SkillBasedQueueRequestDTO", "type": "object", "description": "Request DTO for querying skill-based Contact Service Queues.", "properties": { "skillProfileId": { "type": "string", "description": "The skill profile ID to filter queues by." }, "dynamicSkills": { "type": "array", "description": "List of dynamic skills to filter queues by.", "items": { "$ref": "#/components/schemas/DynamicSkillDTO" } }, "userId": { "type": "string", "description": "The user ID to filter queues by." } } }