{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StringArrayOperatorStringArrayFilter", "title": "StringArrayOperatorStringArrayFilter", "type": "object", "properties": { "type": { "type": "string", "enum": [ "string" ] }, "operator": { "description": "Operators for string-in-array filters.", "type": "string", "enum": [ "in", "not-in" ] }, "value": { "type": "array", "items": { "type": "string" } } }, "required": [ "type", "operator", "value" ] }