{ "$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." }