schemars/docs/_includes/examples/custom_serialization.schema.json
2024-05-13 18:33:55 +01:00

25 lines
478 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MyStruct",
"type": "object",
"properties": {
"bool_as_string": {
"type": "string",
"format": "boolean",
"default": "false"
},
"bool_normal": {
"type": "boolean",
"default": false
},
"int_as_string": {
"type": "string",
"default": "8"
},
"int_normal": {
"type": "integer",
"format": "int32",
"default": 8
}
}
}