{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InterceptAnnouncementsPatch", "title": "InterceptAnnouncementsPatch", "type": "object", "properties": { "greeting": { "type": "string", "enum": [ "CUSTOM", "DEFAULT" ], "description": "System default message is placed when incoming calls are intercepted.\n * `CUSTOM` - A custom greeting is played when incoming calls are intercepted.\n * `DEFAULT` - A System default greeting is played when incoming calls are intercepted.\n" }, "newNumber": { "$ref": "#/components/schemas/InterceptNumberPatch", "description": "Information about the new number announcement." }, "zeroTransfer": { "$ref": "#/components/schemas/InterceptNumberPatch", "description": "Information about how the call is handled if zero (0) is pressed." } } }