{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BaseSchema", "title": "BaseSchema", "type": "object", "description": "The full schema of a base including all tables.", "properties": { "id": { "type": "string", "description": "The unique identifier of the base." }, "name": { "type": "string", "description": "The name of the base." }, "tables": { "type": "array", "items": { "$ref": "#/components/schemas/TableSchema" } } }, "required": [ "id", "tables" ] }