{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AlternateNumbersObject", "title": "AlternateNumbersObject", "type": "object", "required": [ "phoneNumber", "ringPattern" ], "properties": { "phoneNumber": { "type": "string", "example": "+19705550028", "description": "Phone number defined as alternate number." }, "tollFreeNumber": { "type": "boolean", "description": "Flag to indicate if auto attendant number is toll-free number." }, "ringPattern": { "type": "string", "enum": [ "NORMAL", "LONG_LONG", "SHORT_SHORT_LONG", "SHORT_LONG_SHORT" ], "description": "Ring pattern that will be used for the alternate number." } } }