19 lines
296 B
JSON
19 lines
296 B
JSON
{
|
|
"$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"
|
|
]
|
|
}
|
|
}
|
|
}
|