Export data dictionary
export_data_dictionaryWrite a Markdown data dictionary for one schema to a file, documenting every table, column, type, nullability, and constraint, for offline reading without a database connection.
Instructions
Write a Markdown data dictionary for one schema to a file: every table, every column with type and nullability, and every key and constraint. Once written, you can read the schema from disk with no database connection. This is the only tool here that writes anything, and it writes only to the path you give it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schema | Yes | Schema name to document. | |
| output_path | Yes | Where to write the file. Must end in .md. |