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

@ -2,11 +2,6 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MyStruct",
"type": "object",
"required": [
"my_bool",
"my_int",
"my_nullable_enum"
],
"properties": {
"my_bool": {
"type": "boolean"
@ -14,35 +9,29 @@
"my_int": {
"type": "integer",
"format": "int32",
"maximum": 10.0,
"minimum": 1.0
"maximum": 10,
"minimum": 1
},
"my_nullable_enum": {
"oneOf": [
{
"type": "object",
"required": [
"StringNewType"
],
"properties": {
"StringNewType": {
"type": "string",
"format": "phone"
}
},
"additionalProperties": false
"additionalProperties": false,
"required": [
"StringNewType"
]
},
{
"type": "object",
"required": [
"StructVariant"
],
"properties": {
"StructVariant": {
"type": "object",
"required": [
"floats"
],
"properties": {
"floats": {
"type": "array",
@ -53,12 +42,23 @@
"maxItems": 100,
"minItems": 1
}
}
},
"required": [
"floats"
]
}
},
"additionalProperties": false
"additionalProperties": false,
"required": [
"StructVariant"
]
}
]
}
}
},
"required": [
"my_int",
"my_bool",
"my_nullable_enum"
]
}