Vapi · Schema

RegexSecurityFilter

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string The type of security threat to filter.
regex string The regex pattern to filter.
View JSON Schema on GitHub

JSON Schema

vapi-regexsecurityfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RegexSecurityFilter",
  "title": "RegexSecurityFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of security threat to filter.",
      "enum": [
        "regex"
      ]
    },
    "regex": {
      "type": "string",
      "description": "The regex pattern to filter.",
      "example": "badword1|badword2"
    }
  },
  "required": [
    "type",
    "regex"
  ]
}