schemars/schemars/tests/expected/struct-normal-additional-properties.json
Graham Esau 5ddd44a9e5 Regenerate all test expected outputs
Properties are now in a different order due to the preserve_order feature flag
2020-09-24 20:47:46 +01:00

25 lines
No EOL
386 B
JSON

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