get-table-summary
Retrieve a complete table summary including entity details, lineage, sample data, and data quality test cases in a single API call, reducing multiple round-trips.
Instructions
Aggregated table view: entity + lineage + (optional) sample data + (optional) DQ test cases in a single call. Replaces 3-4 round-trips of get-table-by-name + get-lineage + get-sample-data + list-test-cases.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fqn | Yes | Fully qualified table name (e.g. 'service.database.schema.tableName') | |
| includeLineage | No | Include upstream/downstream lineage (depth 2). Default true. | |
| includeSample | No | Include sample data rows. Default false (sample data can be large). | |
| includeTestCases | No | Include data-quality test cases for the table. Default false. | |
| extractFields | No | Comma-separated dotted paths to project from response (e.g. 'id,name,owner.name,columns.*.name'). Use `*` as wildcard for arrays/objects. Wrap field names with dots in backticks. Reduces response tokens dramatically on large entities. |