{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallDistributionGroupBulkExportDTO",
"title": "CallDistributionGroupBulkExportDTO",
"type": "object",
"description": "Call distribution group data for bulk export.",
"properties": {
"agentGroups": {
"type": "array",
"description": "The agent groups in this call distribution group.",
"items": {
"$ref": "#/components/schemas/AgentGroupsBulkExportDTO"
},
"uniqueItems": true
},
"order": {
"type": "integer",
"format": "int32",
"description": "The order of this call distribution group."
},
"duration": {
"type": "integer",
"format": "int32",
"description": "The duration in seconds after which a contact in queue will be distributed to this group."
}
}
}