CreateMetaCollection
Create metadata collection objects for organizing data categories, albums, and subcategories in Alibaba Cloud DataWorks. Define name, type, and parent ID to structure data effectively.
Instructions
创建数据地图集合对象
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Description | No | 集合对象描述 | |
| Name | Yes | 集合对象名称 | |
| ParentId | No | 父节点集合对象Id | |
| Type | Yes | 集合类型,可枚举,取值为-Category类目-Album数据专辑-AlbumCategory专辑子类目 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"Description": {
"description": "集合对象描述",
"type": "string"
},
"Name": {
"description": "集合对象名称",
"type": "string"
},
"ParentId": {
"description": "父节点集合对象Id",
"type": "string"
},
"Type": {
"description": "集合类型,可枚举,取值为-Category类目-Album数据专辑-AlbumCategory专辑子类目",
"type": "string"
}
},
"required": [
"Name",
"Type"
],
"type": "object"
}