{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SequentialRingNumber", "title": "SequentialRingNumber", "type": "object", "required": [ "answerConfirmationRequiredEnabled", "numberOfRings" ], "properties": { "phoneNumber": { "type": "string", "example": "+442071838750", "description": "Phone number set as the sequential number." }, "answerConfirmationRequiredEnabled": { "type": "boolean", "example": true, "description": "When set to `true` the called party is required to press 1 on the keypad to receive the call." }, "numberOfRings": { "type": "number", "example": 2, "description": "The number of rings to the specified phone number before the call advances to the subsequent number in the sequence or goes to voicemail." } } }