创建schema
POST
/enrichment/mapping/schema/create最后修改时间: 10 个月前
每个账户最多允许创建10个schema
请求参数
Header 参数
Content-Type
string
可选
示例值:
application/json
Body 参数application/json
schema_name
string
表名称
>= 1 字符<= 40 字符
description
string
表描述
<= 500 字符
source_labels
array[string]
查询字段列表
>= 1 items<= 3 items
result_labels
array[string]
结果字段列表
>= 1 items<= 10 items
team_id
integer
负责团队ID
示例
{
"schema_name": "string",
"description": "string",
"source_labels": [
"string"
],
"result_labels": [
"string"
],
"team_id": 0
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
error
#/definitions/24794565可选
data
object
必需
schema_id
string
schema id
schema_name
string
schema 名称
示例
未设置
最后修改时间: 10 个月前