describe_dataset
Explore dataset structure: column names, types, cardinality, null percentages, and sample values. Understand any table's schema without reading full files.
Instructions
Primary orientation tool. Returns every column's name, type, cardinality, null%, and sample values. A single call replaces reading the entire source file. Equivalent to opening a spreadsheet and reading the column headers + stats. On wide tables (60+ columns), results are auto-paginated — use columns=[] to select specific ones, or columns_offset to page through remaining columns.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| columns | No | Filter to specific columns (default: all) | |
| dataset | Yes | Dataset identifier (from list_datasets or index_local) | |
| columns_offset | No | Pagination offset for wide tables (default 0) |