{ "$schema": "https://json-schema.org/draft-07/schema", "allOf": [ { "$ref": "base_schema.json" }, { "properties": { "output": { "properties": { "provenance": { "type": "array", "items": { "type": "object", "properties": { "wikipedia_id": { "type": "integer" }, "title": { "type": ["string", "null"] } }, "required": ["title"] } } } } } } ] }