Files
cli/vendor/schemars/tests/expected/enumset.json

19 lines
296 B
JSON
Raw Normal View History

{
"$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"
]
}
}
}