mirror of
https://github.com/Bornholm/formidable.git
synced 2024-12-25 16:29:34 +01:00
17 lines
380 B
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
|
|
} |