blob: 1aa09420fd6cae5bc86014b83729a4abc2216dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
"$schema": "https://json-schema.org/draft/2020-12/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
}
}
}
|