ListColumns
Retrieve and manage column lists from data tables in DataWorks. Specify table IDs, apply filters, and sort data to streamline metadata exploration and analysis.
Instructions
查询数据地图数据表字段列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Comment | No | 注释,模糊匹配 | |
Name | No | 名称,模糊匹配 | |
Order | No | 排序方向,默认为Asc,枚举值,当前支持-Asc升序-Desc降序 | |
PageNumber | No | 分页页码,默认为1 | |
PageSize | No | 分页大小,默认为10,最大为100 | |
SortBy | No | 排序字段,默认为Position,枚举值,当前支持-Name名称-Position位置 | |
TableId | Yes | 数据表ID,可参考[元数据实体相关概念说明](~~2880092~~) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"Comment": {
"description": "注释,模糊匹配",
"type": "string"
},
"Name": {
"description": "名称,模糊匹配",
"type": "string"
},
"Order": {
"description": "排序方向,默认为Asc,枚举值,当前支持-Asc升序-Desc降序",
"type": "string"
},
"PageNumber": {
"description": "分页页码,默认为1"
},
"PageSize": {
"description": "分页大小,默认为10,最大为100"
},
"SortBy": {
"description": "排序字段,默认为Position,枚举值,当前支持-Name名称-Position位置",
"type": "string"
},
"TableId": {
"description": "数据表ID,可参考[元数据实体相关概念说明](~~2880092~~)",
"type": "string"
}
},
"required": [
"TableId"
],
"type": "object"
}