{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SelectiveRejectCallSettingsGet", "title": "SelectiveRejectCallSettingsGet", "type": "object", "required": [ "enabled" ], "properties": { "enabled": { "type": "boolean", "example": true, "description": "`true` if the selective reject feature is enabled." }, "criteria": { "type": "array", "items": { "$ref": "#/components/schemas/SelectiveRejectCallCriteria" }, "description": "A list of criteria specifying conditions when selective reject is in effect." } }, "example": { "enabled": true, "criteria": [ { "id": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBL1oxNzU0MzgzODQzNTA5NzY", "scheduleName": "CustomHoliday(Group)", "source": "ALL_NUMBERS", "rejectEnabled": true } ] } }