{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MetricsLlmCacheStatusFilterByField", "title": "Filter by llm_cache_status", "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": [ "llm_cache_status" ] } }, "required": [ "operator", "value", "field" ] }, { "title": "Empty filters", "type": "object", "properties": { "operator": { "$ref": "#/components/schemas/RequestsFilterTypeEmpty" }, "field": { "description": "The field to filter.", "type": "string", "enum": [ "llm_cache_status" ] } }, "required": [ "operator", "field" ] } ] }