{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallForwardingNumbers", "title": "CallForwardingNumbers", "type": "object", "required": [ "type" ], "properties": { "phoneNumber": { "type": "string", "example": "+15558675309", "description": "Only return call queues with matching primary phone number or extension." }, "extension": { "type": "string", "example": "7781", "description": "Primary phone extension of the call queue." }, "type": { "type": "string", "enum": [ "PRIMARY", "ALTERNATE" ], "description": "Type of\n * `PRIMARY` - Indicates that the given `phoneNumber` or `extension` associated with this rule's containing object is a primary number or extension.\n * `ALTERNATE` - Indicates that the given `phoneNumber` or `extension` associated with this rule's containing object is an alternate number or extension.\n" } } }