ListDataQualityEvaluationTasks
Retrieve and manage a list of quality evaluation tasks in DataWorks, filtering by workspace ID, table GUID, or task name, with customizable pagination for efficient task monitoring.
Instructions
查询质量监控任务列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Name | No | 模糊匹配数据质量校验任务名称 | |
PageNumber | No | 列表分页查询页码,默认为1 | |
PageSize | No | 列表分页查询页大小,默认为10 | |
ProjectId | No | DataWorks工作空间ID | |
TableGuid | No | 表在数据地图中的唯一ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"Name": {
"description": "模糊匹配数据质量校验任务名称",
"type": "string"
},
"PageNumber": {
"description": "列表分页查询页码,默认为1"
},
"PageSize": {
"description": "列表分页查询页大小,默认为10"
},
"ProjectId": {
"description": "DataWorks工作空间ID"
},
"TableGuid": {
"description": "表在数据地图中的唯一ID",
"type": "string"
}
},
"type": "object"
}