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