Merge · Schema
PatchedToolPackCustomRegexOverride
Rejects requests that explicitly set defined_at to ORGANIZATION in tool pack endpoints.
IntegrationsPlatformUnified APIAgent HandlerLLM Gateway
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| is_active | boolean | |
| regex | string | |
| score | number | |
| context_keywords | object | Any type |
| inbound_action | object | * `BLOCK` - BLOCK * `REDACT` - REDACT * `LOG` - LOG * `NONE` - NONE |
| outbound_action | object | * `BLOCK` - BLOCK * `REDACT` - REDACT * `LOG` - LOG * `NONE` - NONE |
| created_at | string | |
| modified_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedToolPackCustomRegexOverride",
"title": "PatchedToolPackCustomRegexOverride",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"is_active": {
"type": "boolean"
},
"regex": {
"type": "string"
},
"score": {
"type": "number",
"format": "double"
},
"context_keywords": {
"description": "Any type"
},
"inbound_action": {
"$ref": "#/components/schemas/PatchedToolPackCustomRegexOverrideInboundAction",
"description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE"
},
"outbound_action": {
"$ref": "#/components/schemas/PatchedToolPackCustomRegexOverrideOutboundAction",
"description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"modified_at": {
"type": "string",
"format": "date-time"
}
},
"description": "Rejects requests that explicitly set defined_at to ORGANIZATION in tool pack endpoints."
}