{ "$id": "document.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "document", "type": "object", "required": [ "resources" ], "properties": { "resources": { "type": "array", "description": "Resources list", "items": { "oneOf": [ { "$ref": "foo-declaration.schema.json" }, { "$ref": "bar-declaration.schema.json" } ] } } } }