ListSchemas
Retrieve a list of database schemas from DataWorks MCP Server. Filter, sort, and paginate results based on metadata, entity types, and custom criteria for efficient data management.
Instructions
查询数据地图数据库模式列表
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Comment | No | 注释,模糊匹配 | |
| Name | No | 名称,模糊匹配 | |
| Order | No | 排序方向,默认为Asc,枚举值,当前支持:- Asc:升序。- Desc:降序 | |
| PageNumber | No | 分页页码,默认为1 | |
| PageSize | No | 分页大小,默认为10,最大为100 | |
| ParentMetaEntityId | Yes | 父层级实体ID,可参考[元数据实体相关概念说明](~~2880092~~)。父层级实体类型参考ListCrawlerTypes接口,格式为`${EntityType}:${实例ID或转义后的URL}:${数据目录名称}:${数据库名称}`,对于不存在的层级置空。>对于MaxCompute类型,此处的实例ID即为主账号ID,数据库名称即为MaxCompute项目名称 | |
| SortBy | No | 排序字段,默认为CreateTime,枚举值,当前支持:- CreateTime:创建时间。- ModifyTime:修改时间。- Name:名称。- Type:类型 | |
| Types | No | 类型,精确匹配,为空时查询所有类型 |
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" }, "ParentMetaEntityId": { "description": "父层级实体ID,可参考[元数据实体相关概念说明](~~2880092~~)。父层级实体类型参考ListCrawlerTypes接口,格式为`${EntityType}:${实例ID或转义后的URL}:${数据目录名称}:${数据库名称}`,对于不存在的层级置空。>对于MaxCompute类型,此处的实例ID即为主账号ID,数据库名称即为MaxCompute项目名称", "type": "string" }, "SortBy": { "description": "排序字段,默认为CreateTime,枚举值,当前支持:- CreateTime:创建时间。- ModifyTime:修改时间。- Name:名称。- Type:类型", "type": "string" }, "Types": { "description": "类型,精确匹配,为空时查询所有类型", "items": { "type": "string" }, "type": "array" } }, "required": [ "ParentMetaEntityId" ], "type": "object" }