{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SelectiveForwardCallGet", "title": "SelectiveForwardCallGet", "type": "object", "required": [ "enabled", "defaultPhoneNumberToForward", "ringReminderEnabled", "destinationVoicemailEnabled", "criteria" ], "properties": { "enabled": { "type": "boolean", "example": true, "description": "`true` if the Selective Forward feature is enabled." }, "defaultPhoneNumberToForward": { "type": "string", "example": "+1934898988", "description": "Enter the phone number to forward calls to during this schedule." }, "ringReminderEnabled": { "type": "boolean", "example": true, "description": "When `true`, enables a ring reminder for such calls." }, "destinationVoicemailEnabled": { "type": "boolean", "description": "Enables forwarding for all calls to voicemail. This option is only available for internal phone numbers or extensions." }, "criteria": { "type": "array", "items": { "$ref": "#/components/schemas/SelectiveForwardCallCriteria" }, "description": "A list of criteria specifying conditions when selective forward feature is in effect." } } }