23 lines
398 B
JSON
23 lines
398 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "MyStruct",
|
|
"type": "object",
|
|
"properties": {
|
|
"my_bool": {
|
|
"type": "boolean"
|
|
},
|
|
"my_int": {
|
|
"type": "integer"
|
|
},
|
|
"my_nullable_enum": true
|
|
},
|
|
"examples": [
|
|
{
|
|
"my_bool": true,
|
|
"my_int": 123,
|
|
"my_nullable_enum": {
|
|
"StringNewType": "foo"
|
|
}
|
|
}
|
|
]
|
|
}
|