Merge · Schema

PublicCombinedCustomRegexRule

Custom regex rule with effective configuration for a tool pack.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
name string
regex string
score number
context_keywords object Any type
is_active boolean
outbound_action string
defined_at string
View JSON Schema on GitHub

JSON Schema

merge-publiccombinedcustomregexrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublicCombinedCustomRegexRule",
  "title": "PublicCombinedCustomRegexRule",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "regex": {
      "type": "string"
    },
    "score": {
      "type": "number",
      "format": "double"
    },
    "context_keywords": {
      "description": "Any type"
    },
    "is_active": {
      "type": "boolean"
    },
    "outbound_action": {
      "type": "string"
    },
    "defined_at": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "name",
    "regex",
    "score",
    "context_keywords",
    "is_active",
    "outbound_action",
    "defined_at"
  ],
  "description": "Custom regex rule with effective configuration for a tool pack."
}