Schema for table from the Wikimedia Enterprise API
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/table.json", "title": "table", "description": "Schema for table from the Wikimedia Enterprise API", "type": "object", "properties": { "identifier": { "type": "string" }, "headers": { "type": "array", "items": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "string" } } } } }, "rows": { "type": "array", "items": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "string" } } } } }, "confidence_score": { "type": "number", "minimum": 0, "maximum": 1 } } }