ListDataQualityRuleTemplates
Retrieve a list of quality rule templates for DataWorks, filtering by creation source (system or user-defined), project ID, directory path, or name. Supports pagination for efficient template management.
Instructions
查询质量规则模版列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
CreationSource | Yes | 规则模板的创建来源,必填。- System:系统模板- UserDefined:用户自定义模板 | |
DirectoryPath | No | 自定义模板被存放的类目目录,斜线/分隔层级。每个层级名称最长1024个字符,由不能包含空白字符、不能包含反斜线 | |
Name | No | 模板规则名称模糊匹配,如果是系统模板,则会根据语言模糊匹配系统模板的国际化名称 | |
PageNumber | No | 列表分页查询页大小,默认为10 | |
PageSize | No | 列表分页查询页码,默认为1 | |
ProjectId | No | DataWorks工作空间ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"CreationSource": {
"description": "规则模板的创建来源,必填。- System:系统模板- UserDefined:用户自定义模板",
"type": "string"
},
"DirectoryPath": {
"description": "自定义模板被存放的类目目录,斜线/分隔层级。每个层级名称最长1024个字符,由不能包含空白字符、不能包含反斜线",
"type": "string"
},
"Name": {
"description": "模板规则名称模糊匹配,如果是系统模板,则会根据语言模糊匹配系统模板的国际化名称",
"type": "string"
},
"PageNumber": {
"description": "列表分页查询页大小,默认为10"
},
"PageSize": {
"description": "列表分页查询页码,默认为1"
},
"ProjectId": {
"description": "DataWorks工作空间ID"
}
},
"required": [
"CreationSource"
],
"type": "object"
}