formidable/internal/command/testdata/check/schema.json

17 lines
380 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"foo": {
"type": "object",
"properties": {
"bar": {
"type": "string"
}
},
"required": ["bar"]
}
},
"required": ["foo"],
"additionalProperties": true
}