{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MetricsAiResponseModelFilterByField", "title": "Filter by ai_response_model", "oneOf": [ { "title": "Multiselect filters", "type": "object", "properties": { "operator": { "$ref": "#/components/schemas/RequestsFilterType" }, "value": { "description": "The values to include in the results.\n", "type": "array", "items": { "type": "string" } }, "field": { "description": "The field to filter.", "type": "string", "enum": [ "ai_response_model" ] } }, "required": [ "operator", "value", "field" ] }, { "title": "Empty filters", "type": "object", "properties": { "operator": { "$ref": "#/components/schemas/RequestsFilterTypeEmpty" }, "field": { "description": "The field to filter.", "type": "string", "enum": [ "ai_response_model" ] } }, "required": [ "operator", "field" ] } ] }