Regenerate example schemas

This commit is contained in:
Graham Esau 2024-05-13 18:33:55 +01:00
parent f5d2142714
commit 8c2c32bce0
19 changed files with 244 additions and 242 deletions

View file

@ -4,22 +4,22 @@
"type": "object",
"properties": {
"bool_as_string": {
"default": "false",
"type": "string",
"format": "boolean"
"format": "boolean",
"default": "false"
},
"bool_normal": {
"default": false,
"type": "boolean"
"type": "boolean",
"default": false
},
"int_as_string": {
"default": "8",
"type": "string"
"type": "string",
"default": "8"
},
"int_normal": {
"default": 8,
"type": "integer",
"format": "int32"
"format": "int32",
"default": 8
}
}
}