{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListContainsOperatorListContainsFilter", "title": "ListContainsOperatorListContainsFilter", "type": "object", "properties": { "type": { "type": "string", "enum": [ "list" ] }, "operator": { "description": "Operators for list contains filters.", "type": "string", "enum": [ "contains", "not-contains" ] }, "value": { "nullable": true, "oneOf": [ { "type": "integer" }, { "type": "string" } ] } }, "required": [ "type", "operator", "value" ] }