10 lines
199 B
JSON
10 lines
199 B
JSON
|
|
{
|
||
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||
|
|
"description": "Describes foo",
|
||
|
|
"type": "object",
|
||
|
|
"allOf": [
|
||
|
|
{ "$ref": "bar.json" },
|
||
|
|
{ "$ref": "foo/foo.json" }
|
||
|
|
]
|
||
|
|
}
|