Add separate docs for v0.8/v1
This commit is contained in:
parent
3150f98fc8
commit
d511d447f7
61 changed files with 1620 additions and 58 deletions
25
docs/_includes/examples_v0/custom_serialization.schema.json
Normal file
25
docs/_includes/examples_v0/custom_serialization.schema.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "MyStruct",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bool_as_string": {
|
||||
"default": "false",
|
||||
"type": "string",
|
||||
"format": "boolean"
|
||||
},
|
||||
"bool_normal": {
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"int_as_string": {
|
||||
"default": "8",
|
||||
"type": "string"
|
||||
},
|
||||
"int_normal": {
|
||||
"default": 8,
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue