get-table-schema
Retrieve and visualize the schema of a specific table from a Xano database. Choose between markdown for readable documentation or json for detailed schema representation.
Instructions
Browse the schema of a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format: 'markdown' for readable documentation or 'json' for complete schema | markdown |
table_id | Yes | ID of the table to get schema from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "markdown",
"description": "Output format: 'markdown' for readable documentation or 'json' for complete schema",
"enum": [
"markdown",
"json"
],
"type": "string"
},
"table_id": {
"description": "ID of the table to get schema from",
"type": "string"
}
},
"required": [
"table_id"
],
"type": "object"
}