Merge · Schema

CustomRegexRuleResponse

Custom regex rule for an organization.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
name string
regex string
score number
context_keywords array
is_active boolean
created_at string
modified_at string
outbound_action object * `BLOCK` - BLOCK * `REDACT` - REDACT * `LOG` - LOG * `NONE` - NONE
defined_at string
View JSON Schema on GitHub

JSON Schema

merge-customregexruleresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomRegexRuleResponse",
  "title": "CustomRegexRuleResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "regex": {
      "type": "string"
    },
    "score": {
      "type": "number",
      "format": "double"
    },
    "context_keywords": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "is_active": {
      "type": "boolean"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "modified_at": {
      "type": "string",
      "format": "date-time"
    },
    "outbound_action": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/CustomRegexRuleResponseOutboundAction"
        },
        {
          "type": "null"
        }
      ],
      "description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE"
    },
    "defined_at": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "name",
    "regex",
    "score",
    "context_keywords",
    "is_active",
    "created_at",
    "modified_at",
    "outbound_action",
    "defined_at"
  ],
  "description": "Custom regex rule for an organization."
}