{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventsTableStringCondition", "title": "EventsTableStringCondition", "type": "object", "properties": { "column": { "type": "string", "description": "The string field name from the event data", "example": "provider" }, "operator": { "type": "string", "description": "String comparison operator", "example": "=", "enum": [ "=", "!=", "contains", "notContains" ] }, "value": { "type": "string", "description": "The string value to compare", "example": "openai" } }, "required": [ "column", "operator", "value" ] }