{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallDistributionGroupDTO", "title": "CallDistributionGroupDTO", "type": "object", "properties": { "agentGroups": { "type": "array", "items": { "$ref": "#/components/schemas/AgentGroupDTO" }, "uniqueItems": true }, "order": { "type": "integer", "format": "int32", "description": "The order of this call distribution group.", "example": 1 }, "duration": { "type": "integer", "format": "int32", "default": 0, "description": "(Optional)The duration in seconds after which a contact in queue will be distributed to this group.", "example": 2 } } }