{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AnyVariants", "title": "AnyVariants", "anyOf": [ { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, { "type": "array", "items": { "type": "integer", "format": "int64" }, "uniqueItems": true } ] }