{ "type": "object", "properties": { "annotations": { "type": "array", "description": "", "example": [], "items": { "type": "object", "properties": { "name": { "type": "string", "example": "Example Title" } }, "required": [ "name" ] } }, "location": { "type": "object", "properties": { "column": { "type": "integer", "example": 10 }, "line": { "type": "integer", "example": 10 } }, "required": [ "column", "line" ] }, "modifiers": { "type": "array", "description": "", "example": [], "items": { "type": "string" } }, "name": { "type": "string", "example": "Example Title" }, "references": { "type": "array", "description": "", "example": [], "items": { "type": "string" } }, "type": { "type": "string", "example": "example_value" } }, "required": [ "annotations", "location", "modifiers", "name", "references", "type" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "TableDeclaration" }