24 lines
418 B
JSON
24 lines
418 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "MyStruct",
|
|
"examples": [
|
|
{
|
|
"my_bool": true,
|
|
"my_int": 123,
|
|
"my_nullable_enum": {
|
|
"StringNewType": "foo"
|
|
}
|
|
}
|
|
],
|
|
"type": "object",
|
|
"properties": {
|
|
"my_bool": {
|
|
"type": "boolean"
|
|
},
|
|
"my_int": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"my_nullable_enum": true
|
|
}
|
|
}
|