Custom regex rule with effective configuration for a tool pack.
{ "$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." }