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