get_model_details
Retrieve detailed information about a specific dbt model, including compiled SQL, descriptions, column names, and types, by providing the model name.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"model_name": {
"title": "Model Name",
"type": "string"
}
},
"required": [
"model_name"
],
"title": "get_model_detailsArguments",
"type": "object"
}