describe-view
Retrieve detailed information about a Snowflake view, including column definitions and SQL query, to simplify analysis and integration.
Instructions
Get details of a view (columns, SQL).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | ||
schema | Yes | ||
view | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"type": "string"
},
"schema": {
"type": "string"
},
"view": {
"type": "string"
}
},
"required": [
"database",
"schema",
"view"
],
"type": "object"
}