Properties
| Name | Type | Description |
|---|---|---|
| column | string | The string field name from the event data |
| operator | string | String comparison operator |
| value | string | The string value to compare |
JSON Schema
{
"$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"
]
}