{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateWrapUpReasonPayload", "title": "CreateWrapUpReasonPayload", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "example": "Wrap up reason 1", "description": "Name of the wrap-up reason." }, "description": { "type": "string", "example": "This is a description for wrap-up reason 1", "description": "Description of the wrap-up reason." }, "queues": { "type": "array", "items": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL0NBTExfUVVFVUUvOGY1MDI2ZjMtMDZjYi00OTU3LWE0MDQtNDYyM2UzYjJjYzVi" }, "description": "List of queue IDs assigned to the wrap-up reason." }, "assignAllQueuesEnabled": { "type": "boolean", "description": "Denotes whether all queues are assigned to the wrap-up reason." } } }