mirror of
https://github.com/apache/superset.git
synced 2026-08-04 13:02:41 +00:00
31 lines
749 B
JSON
31 lines
749 B
JSON
{
|
|
"parameters": [
|
|
{
|
|
"description": "The database id",
|
|
"in": "path",
|
|
"name": "pk",
|
|
"required": true,
|
|
"schema": { "type": "integer" }
|
|
},
|
|
{
|
|
"description": "Table name",
|
|
"in": "query",
|
|
"name": "name",
|
|
"required": true,
|
|
"schema": { "type": "string" }
|
|
},
|
|
{
|
|
"description": "Optional table schema, if not passed the schema configured in the database will be used",
|
|
"in": "query",
|
|
"name": "schema",
|
|
"schema": { "type": "string" }
|
|
},
|
|
{
|
|
"description": "Optional table catalog, if not passed the catalog configured in the database will be used",
|
|
"in": "query",
|
|
"name": "catalog",
|
|
"schema": { "type": "string" }
|
|
}
|
|
]
|
|
}
|