{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallParkSettingsObject", "title": "CallParkSettingsObject", "type": "object", "required": [ "ringPattern" ], "properties": { "ringPattern": { "type": "string", "enum": [ "NORMAL", "LONG_LONG", "SHORT_SHORT_LONG", "SHORT_LONG_SHORT" ], "description": "Ring pattern for when this callpark is called.\n * `NORMAL` - Normal incoming ring pattern.\n * `LONG_LONG` - Incoming ring pattern of two long rings.\n * `SHORT_SHORT_LONG` - Incoming ring pattern of two short rings, followed by a short ring.\n * `SHORT_LONG_SHORT` - Incoming ring pattern of a short ring, followed by a long ring, followed by a short ring.\n" }, "recallTime": { "type": "number", "example": 60, "description": "Amount of time within 30 and 600 seconds the Call Park will be parked. If the call isn't picked up within the set time, then the call will be recalled based on the Call Park Recall setting." }, "huntWaitTime": { "type": "number", "example": 60, "description": "Amount of time within 30 and 600 seconds the Call Park will be parked. If the call isn't picked up, the call will revert back to the hunt group (after the person who parked the call is alerted)." } } }