19 lines
No EOL
324 B
JSON
19 lines
No EOL
324 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "Struct",
|
|
"type": "object",
|
|
"properties": {
|
|
"foo": {
|
|
"description": "This is a document",
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"bar": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"required": [
|
|
"foo",
|
|
"bar"
|
|
]
|
|
} |