{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetCallParkObject", "title": "GetCallParkObject", "type": "object", "required": [ "id", "name", "recall", "parkOnAgentsEnabled" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL0NBTExfUEFSSy9kR1ZqYUc1cFkyRnNJSE4xY0hCdmNuUWdMU0JwYm5OMWNtRnVZMlVnTFNCamRYTjBiMjFsY2lBeA==", "description": "A unique identifier for the call park." }, "name": { "type": "string", "example": "technical support - insurance - customer 1", "description": "Unique name for the call park. The maximum length is 80." }, "recall": { "$ref": "#/components/schemas/GetRecallHuntGroupObject", "description": "Recall options that are added to call park." }, "agents": { "type": "array", "items": { "$ref": "#/components/schemas/GetPersonPlaceVirtualLineCallParksObject" }, "description": "People, workspaces and virtual lines that are eligible to receive calls." }, "parkOnAgentsEnabled": { "type": "boolean", "description": "Whether or not the calls will be parked on agents as a destination." }, "callParkExtensions": { "type": "array", "items": { "$ref": "#/components/schemas/ListCPCallParkExtensionObject" }, "description": "Array of call park extensions assigned to a call park." } } }