schemars/schemars/tests/expected/skip_struct_fields.json

19 lines
No EOL
324 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "MyStruct",
"type": "object",
"properties": {
"writable": {
"type": "number",
"format": "float",
"writeOnly": true
},
"included": {
"type": "null"
}
},
"required": [
"writable",
"included"
]
}