Files
cli/vendor/schemars/tests/expected/struct-normal-additional-properties.json

25 lines
386 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Struct",
"type": "object",
"required": [
"bar",
"foo"
],
"properties": {
"foo": {
"type": "integer",
"format": "int32"
},
"bar": {
"type": "boolean"
},
"baz": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
}