22 lines
No EOL
331 B
JSON
22 lines
No EOL
331 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Struct",
|
|
"type": "object",
|
|
"required": [
|
|
"bar",
|
|
"baz",
|
|
"foo"
|
|
],
|
|
"properties": {
|
|
"foo": {
|
|
"type": "boolean"
|
|
},
|
|
"bar": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"baz": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
} |