{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Set_of_Foo", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/Foo" }, "$defs": { "Foo": { "type": "string", "enum": [ "Bar", "Baz" ] } } }