Skip to content

维度表

获取维度表列表

GET /openapi/v1/workspaces/{workspaceId}/dimension-tables/

查询参数

参数 类型 是否必填 说明
offset int 偏移量
limit int 每页数量,默认 100
count bool 是否只返回数量

返回结果

{
  "errcode": 200,
  "errmsg": "success",
  "data": [
    {
      "uid": "abc123",
      "mark": "维度表",
      "name": "用户维度表",
      "table": "user_table",
      "tableUid": "table123",
      "models": [
        {
          "uid": "model123",
          "name": "模型名称"
        }
      ],
      "where": null
    }
  ]
}

参数说明

参数 类型 说明
data.uid string 维度表 uid
data.mark string 维度表标识
data.name string 维度表名称
data.table string 数据表名
data.tableUid string 数据表 uid
data.models list 关联的模型列表
data.where object 过滤条件

获取维度表详情

GET /openapi/v1/workspaces/{workspaceId}/dimension-tables/{dimensionTableUid}/