schemars/schemars/tests/expected/skip_struct_fields.json
2019-09-12 19:07:25 +01:00

18 lines
No EOL
298 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MyStruct",
"type": "object",
"properties": {
"included1": {
"type": "number",
"format": "float"
},
"included2": {
"type": "null"
}
},
"required": [
"included1",
"included2"
]
}