{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SimultaneousRingPatch", "title": "SimultaneousRingPatch", "type": "object", "required": [ "criteriasEnabled" ], "properties": { "enabled": { "type": "boolean", "example": true, "description": "Simultaneous Ring is enabled or not." }, "doNotRingIfOnCallEnabled": { "type": "boolean", "example": true, "description": "When set to `true`, the configured phone numbers won't ring when on a call." }, "phoneNumbers": { "type": "array", "items": { "$ref": "#/components/schemas/SimultaneousRingNumber" }, "description": "Enter up to 10 phone numbers to ring simultaneously when a workspace phone receives an incoming call." }, "criteriasEnabled": { "type": "boolean", "example": true, "description": "When `true`, enables the selected schedule for simultaneous ring." } } }