{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MetadataTable",
"title": "MetadataTable",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ID of the table."
},
"name": {
"type": "string",
"description": "The name of the table."
},
"description": {
"type": "string",
"description": "The description of the table."
},
"columns": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Column"
},
"description": "The columns in the table."
}
}
}