跳转至

查询数据集详情

接口说明

本接口是用于在指标平台中查询数据集的详情。

接口URL

GET Http://{anymetrics_host:anymetrics_port}/anymetrics/api/v1/dataset/info?name=tb_user_api_2

anymetrics_host:anymetrics_port 获取方式请参考:调用方式

公共请求参数

参数 类型 是否必选 描述
tenant-id String 租户ID,用于指标查询内容所在的租户
auth-type String 认证方式。支持 UIDTOKENACCOUNTAPIKEY
auth-value String auth-type 对应的认证值

公共参数获取方式

tenant-id 可在 Aloudata CAN 顶部导航栏选择指标应用,左边菜单栏选择 API 集成,在 API 集成界面获取;auth-value 请按 auth-type 填写对应认证值。

image.png

请求参数

参数 类型 是否必选 最大长度 描述 示例值
name String 128 数据集名称 datasetName

相应参数

1. 基础信息表

参数名 类型 必填 说明
data Array 详细内容请参见:data 参数说明
success Boolean 请求是否成功
code String 状态码(如"200")
errorMsg String 错误信息(失败时返回)
detailErrorMsg String 详细错误信息
traceId String 请求追踪ID

2. data 参数说明

字段名 类型 说明
name String 数据集名称,全局唯一,英文+数字+下划线,会被 trim 处理
displayName String 数据集显示名,用于前端展示
description String 数据集描述
version Integer 版本号
isPublished Bool 是否发布过
hasDraft Bool 是否是草稿状态
sourceInfo Object 数据源信息,见 sourceInfo 响应
columns Array 对外可见的列(= defColumns 去掉 isHidden=true 的子集)
defColumns Array 数据集定义的全部列(包含隐藏列),见 列字段说明
relations Array 本数据集主动关联到其他数据集的关联关系,即当前数据集为N端的场景
relationFroms Array 其他数据集关联到本数据集的关联关系,当前数据集为1端的场景
filter String 前端专用的 FormulaDef JSON 格式过滤条件,OpenAPI 读 filterExpr 即可
filterExpr String 数据集级过滤条件表达式字符串,无过滤时为 null
layout Object 前端筛选器 UI 状态,后端透传不解析,OpenAPI 不需要关注
resourceId String 权限资源ID(一般等于数据集 name),仅权限相关场景有用
userPrivilegeResultDTO Object 当前用户对该数据集的权限信息,仅需判断权限时有用,见 权限字段说明
createTime Long 创建时间戳(毫秒)
updateTime Long 最后更新时间戳(毫秒)
userId String 始终为 null,所有者信息从 owner 获取
partitionMapping Object 分区映射配置,仅加速场景需要关注,未配置时为 null
approvalMutationStatus String 数据集变更审批状态(如 CREATE/UPDATE/DELETE),仅开启审批时有值
approvalAuthorityStatus String 数据集权限变更审批状态,仅开启审批时有值
available Integer 数据集可用状态。0=可用,非0=不可用(数据源连接异常等)
mutationApprovalPendingOperation String 待审批的变更操作类型,无待审批时为 "NONE",仅开启审批时有意义
relatedDatasetCount Integer 关联的数据集数量,可能为 null
status String 数据集状态,如 "ONLINE"
tags Array 数据集绑定的标签列表,仅根据指定数据集返回关联数据集的相关接口有用
datasetMode String 数据集模式,"STANDARD"(标准横表)或竖表模式
identifierColumn String 竖表模式的标识列,标准模式为 null
parentDatasetName String 父数据集名称(共享数据集场景),普通数据集为 null
identifierValue String 子数据集用的标识,仅竖表模式有用
identifierValues Array 竖表模式的标识值列表,标准模式为 null
owner Object 数据集所有者,含 userId(用户ID)和 nickname(昵称)

3.partitionMapping 参数说明​

参数名 类型 必填 说明 示例值/枚举值
partitionColumnName String 分区列字段名 "dt"
sourceTableGuid String sql 中引用的源头表的 guid "fl_sr1.default_catalog.aloudatacan.fly_order_partition"
sourceColumnName String sql 中引用的源头表的分区字段名称 "dt"
dateGranularity String 日期分区粒度 "DAY"
columnPartitionMappings Object[] 列级分区映射配置 详情参见:columnPartitionMappings 参数说明

4.columnPartitionMappings 参数说明

参数名 类型 必填 说明 示例值/枚举值
columnName String 普通日期字段的名称
interval Intger 偏移量 1
sign String 偏移量符号,POSITIVE:正号。NEGATIVE:负号 POSITIVE

5.owner 参数说明

参数名 类型 说明
userId String 所有者用户ID
nickname String 所有者昵称

6. sourceInfo 参数说明

参数名 类型 必填 说明
content String 数据源完整路径,如:jmsr.default_catalog.partition_test.p_order
type String 资源类型
datasourceItems Object[] 数据源引擎信息

7.columns 参数说明

参数名 类型 必填 说明
name String 列名"order_id"
originDataType String 原始数据类型枚举:INT/DATE/VARCHAR/DOUBLE
type String 列角色。DIMENSION(维度)或MEASURE(指标)DIMENSION(维度)或MEASURE(指标)
isPartition Boolean 是否分区列仅分区列如dttrue
dimension Object 维度特有属性包含originalDataType等字段(当type=DIMENSION时存在)

8.relationFroms 参数说明

参数名 类型 必填 说明
id Intger 关联关系 id
type String 关联类型,如:"MANY_TO_ONE"
srcDatasetName String 源数据集,如:"p_express"
dstDatasetName String 目标数据集,如:"p_order"
relationConditions Object[] 关联条件,如:每项包含srcExpr(如"['p_express'/'order_id']")和dstExpr字段

9.relations[]

字段 类型 说明
type String 关联类型枚举
srcDatasetName String 源数据集名称(即当前数据集)
dstDatasetName String 目标数据集名称
relationConditions Array 关联条件列表,见下方
relationName String 关联名称
relationDisplayName String 关联显示名
filters Array 关联筛选条件表达式列表
srcDatasetDisplayName String 源数据集显示名,仅展示用
dstDatasetDisplayName String 目标数据集显示名,仅展示用
constraintSetting String 约束设置

10. userPrivilegeResultDTO 参数说明​

参数名 类型 必填 说明 示例值/枚举值
resourceDTO Object 关联的资源信息 见子表
cloudAccount String 云账号标识 "3itf4r1k2xvk@aloudata.com"
accountType String 账号类型 "USER"
authorityRole String 用户权限角色 "OWNER"
grantTime Long 权限授予时间戳(毫秒) null
expiredTime Long 权限过期时间戳(毫秒) null
authoritySource String 权限来源 "DIRECT"
canCreateResources String[] 可创建的资源类型列表 ["CATEGORY_METRIC", "DATASET"]
canEdit Boolean 是否有编辑权限 true
canDelete Boolean 是否有删除权限 true
canUsage Boolean 是否有使用权限 true
canAuth Boolean 是否有授权权限 true
canTransfer Boolean 是否有转移权限 true
authRoleList String[] 可授予的角色列表 ["ADMIN", "USAGER"]
resourceType String 资源类型(固定值) "DATASET"
resourceId String 资源ID(与顶级resourceId重复) "p_order"

10.resourceDTO 参数说明

参数名 类型 必填 说明
resourceType String 同顶级resourceType
resourceId String 同顶级resourceId
resourceName String 资源显示名称

请求示例

curl --location --request GET 'http://127.0.0.1:8083/anymetrics/api/v1/dataset/info?name=p_order' \
--header 'auth-type: UID' \
--header 'tenant-id: tn_19487697' \
--header 'auth-value: 463663891121963008' \
--header 'Accept-Language: zh-CN' \

响应内容

{
    "data": {
        "name": "p_order",
        "displayName": "p_order",
        "description": "",
        "sourceInfo": {
            "id": null,
            "name": "p_order",
            "displayName": "p_order",
            "columns": [
                {
                    "name": "dt",
                    "displayName": null,
                    "description": "dt",
                    "originDataType": "DATE",
                    "isPartition": true,
                    "isFirstPartition": null
                },
                {
                    "name": "order_id",
                    "displayName": null,
                    "description": "order_id",
                    "originDataType": "INT",
                    "isPartition": false,
                    "isFirstPartition": null
                },
                {
                    "name": "order_amt",
                    "displayName": null,
                    "description": "order_amt",
                    "originDataType": "DOUBLE",
                    "isPartition": false,
                    "isFirstPartition": null
                },
                {
                    "name": "order_date",
                    "displayName": null,
                    "description": "order_date",
                    "originDataType": "DATE",
                    "isPartition": false,
                    "isFirstPartition": null
                },
                {
                    "name": "description",
                    "displayName": null,
                    "description": "description",
                    "originDataType": "VARCHAR",
                    "isPartition": false,
                    "isFirstPartition": null
                },
                {
                    "name": "user_id",
                    "displayName": null,
                    "description": "user_id",
                    "originDataType": "INT",
                    "isPartition": false,
                    "isFirstPartition": null
                },
                {
                    "name": "product_id",
                    "displayName": null,
                    "description": "product_id",
                    "originDataType": "INT",
                    "isPartition": false,
                    "isFirstPartition": null
                },
                {
                    "name": "seller_id",
                    "displayName": null,
                    "description": "seller_id",
                    "originDataType": "INT",
                    "isPartition": false,
                    "isFirstPartition": null
                },
                {
                    "name": "region",
                    "displayName": null,
                    "description": "region",
                    "originDataType": "VARCHAR",
                    "isPartition": false,
                    "isFirstPartition": null
                }
            ],
            "description": "",
            "content": "jmsr.`default_catalog.partition_test`.p_order",
            "type": "TABLE",
            "catalogs": null,
            "datasourceItems": [
                {
                    "id": "jmsr",
                    "name": "jmsR",
                    "queryEngineType": "STARROCKS"
                }
            ],
            "resourceType": "TABLE",
            "resourceId": "jmsr.`default_catalog.partition_test`.p_order"
        },
        "columns": [
            {
                "name": "dt",
                "displayName": "dt",
                "description": "dt",
                "type": "DIMENSION",
                "isHidden": false,
                "originDataType": "DATE",
                "isPartition": true,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "dt",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "dt"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'dt']",
                "dimension": {
                    "name": "80a2a1257a78445d873b64c2c67ec76e",
                    "displayName": "dt",
                    "ownerId": "463663891121963008",
                    "originalDataType": "DATE"
                }
            },
            {
                "name": "order_id",
                "displayName": "order_id",
                "description": "order_id",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "INT",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "order_id",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "order_id"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'order_id']",
                "dimension": null
            },
            {
                "name": "order_amt",
                "displayName": "order_amt",
                "description": "order_amt",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "DOUBLE",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "order_amt",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "order_amt"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'order_amt']",
                "dimension": null
            },
            {
                "name": "order_date",
                "displayName": "order_date",
                "description": "order_date",
                "type": "DIMENSION",
                "isHidden": false,
                "originDataType": "DATE",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "order_date",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "order_date"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'order_date']",
                "dimension": {
                    "name": "ad1bac4b3d4a458ab9700dc15934236e",
                    "displayName": "order_date",
                    "ownerId": "463663891121963008",
                    "originalDataType": "DATE"
                }
            },
            {
                "name": "description",
                "displayName": "description",
                "description": "description",
                "type": "DIMENSION",
                "isHidden": false,
                "originDataType": "VARCHAR",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "description",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "description"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'description']",
                "dimension": {
                    "name": "7505fc7590b840378490ccc115e6b783",
                    "displayName": "description",
                    "ownerId": "463663891121963008",
                    "originalDataType": "VARCHAR"
                }
            },
            {
                "name": "user_id",
                "displayName": "user_id",
                "description": "user_id",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "INT",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "user_id",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "user_id"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'user_id']",
                "dimension": null
            },
            {
                "name": "product_id",
                "displayName": "product_id",
                "description": "product_id",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "INT",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "product_id",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "product_id"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'product_id']",
                "dimension": null
            },
            {
                "name": "seller_id",
                "displayName": "seller_id",
                "description": "seller_id",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "INT",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "seller_id",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "seller_id"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'seller_id']",
                "dimension": null
            },
            {
                "name": "region",
                "displayName": "region",
                "description": "region",
                "type": "DIMENSION",
                "isHidden": false,
                "originDataType": "VARCHAR",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "region",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "region"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'region']",
                "dimension": {
                    "name": "5f6066691dac4aa480c147565648254c",
                    "displayName": "region",
                    "ownerId": "463663891121963008",
                    "originalDataType": "VARCHAR"
                }
            }
        ],
        "defColumns": [
            {
                "name": "dt",
                "displayName": "dt",
                "description": "dt",
                "type": "DIMENSION",
                "isHidden": false,
                "originDataType": "DATE",
                "isPartition": true,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "dt",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "dt"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'dt']",
                "dimension": {
                    "name": "80a2a1257a78445d873b64c2c67ec76e",
                    "displayName": "dt",
                    "ownerId": "463663891121963008",
                    "originalDataType": "DATE"
                }
            },
            {
                "name": "order_id",
                "displayName": "order_id",
                "description": "order_id",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "INT",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "order_id",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "order_id"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'order_id']",
                "dimension": null
            },
            {
                "name": "order_amt",
                "displayName": "order_amt",
                "description": "order_amt",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "DOUBLE",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "order_amt",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "order_amt"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'order_amt']",
                "dimension": null
            },
            {
                "name": "order_date",
                "displayName": "order_date",
                "description": "order_date",
                "type": "DIMENSION",
                "isHidden": false,
                "originDataType": "DATE",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "order_date",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "order_date"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'order_date']",
                "dimension": {
                    "name": "ad1bac4b3d4a458ab9700dc15934236e",
                    "displayName": "order_date",
                    "ownerId": "463663891121963008",
                    "originalDataType": "DATE"
                }
            },
            {
                "name": "description",
                "displayName": "description",
                "description": "description",
                "type": "DIMENSION",
                "isHidden": false,
                "originDataType": "VARCHAR",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "description",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "description"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'description']",
                "dimension": {
                    "name": "7505fc7590b840378490ccc115e6b783",
                    "displayName": "description",
                    "ownerId": "463663891121963008",
                    "originalDataType": "VARCHAR"
                }
            },
            {
                "name": "user_id",
                "displayName": "user_id",
                "description": "user_id",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "INT",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "user_id",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "user_id"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'user_id']",
                "dimension": null
            },
            {
                "name": "product_id",
                "displayName": "product_id",
                "description": "product_id",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "INT",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "product_id",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "product_id"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'product_id']",
                "dimension": null
            },
            {
                "name": "seller_id",
                "displayName": "seller_id",
                "description": "seller_id",
                "type": "MEASURE",
                "isHidden": false,
                "originDataType": "INT",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "seller_id",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "seller_id"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'seller_id']",
                "dimension": null
            },
            {
                "name": "region",
                "displayName": "region",
                "description": "region",
                "type": "DIMENSION",
                "isHidden": false,
                "originDataType": "VARCHAR",
                "isPartition": null,
                "isFirstPartition": null,
                "isPrimaryKey": null,
                "sourceColumn": "region",
                "ast": {
                    "extType": null,
                    "type": "NAME_REF",
                    "path": [
                        "p_order",
                        "region"
                    ],
                    "op": null,
                    "args": null,
                    "val": null,
                    "x": null,
                    "y": null,
                    "formula": null,
                    "partitionList": null,
                    "orderList": null,
                    "isDesc": null,
                    "position": null
                },
                "expr": "['p_order'/'region']",
                "dimension": {
                    "name": "5f6066691dac4aa480c147565648254c",
                    "displayName": "region",
                    "ownerId": "463663891121963008",
                    "originalDataType": "VARCHAR"
                }
            }
        ],
        "relations": [],
        "relationFroms": [
            {
                "id": "438",
                "type": "MANY_TO_ONE",
                "srcDatasetName": "p_express",
                "srcDatasetDisplayName": null,
                "dstDatasetName": "p_order",
                "dstDatasetDisplayName": null,
                "relationConditions": [
                    {
                        "srcAst": "{\"path\":[\"p_express\",\"order_id\"],\"type\":\"NAME_REF\"}",
                        "srcExpr": "['tn_19487697_jmsr.default.p_express'/'order_id']",
                        "dstAst": "{\"path\":[\"p_order\",\"order_id\"],\"type\":\"NAME_REF\"}",
                        "dstExpr": "['tn_19487697_jmsr.default.p_order'/'order_id']"
                    }
                ],
                "partitionConfig": null,
                "filters": "null",
                "userId": "463663891121963008",
                "createTime": 1731059622612,
                "updateTime": 1731059622612
            }
        ],
        "resourceId": "p_order",
        "userPrivilegeResultDTO": {
            "id": null,
            "resourceDTO": {
                "resourceType": "DATASET",
                "resourceId": "p_order",
                "resourceName": null
            },
            "cloudAccount": "3itf4r1k2xvk@aloudata.com",
            "accountType": "USER",
            "authorityRole": "OWNER",
            "grantTime": null,
            "expiredTime": null,
            "authoritySource": "DIRECT",
            "extendResourceDTO": null,
            "canCreateResources": [
                "CATEGORY_METRIC",
                "CATEGORY_DATASET",
                "METRIC",
                "DATASET",
                "RESULT_PLAN",
                "CATEGORY_RESULT_PLAN"
            ],
            "canEdit": true,
            "canDelete": true,
            "canUsage": true,
            "canAuth": true,
            "canTransfer": true,
            "authRoleList": [
                "ADMIN",
                "USAGER"
            ],
            "resourceType": "DATASET",
            "resourceId": "p_order"
        },
        "createTime": 1721567197373,
        "updateTime": 1739931491771,
        "userId": null,
        "partitionMapping": {
            "partitionColumnName": "dt",
            "sourceTableGuid": null,
            "sourceColumnName": null,
            "dateGranularity": "DAY",
            "columnPartitionMappings": []
        },
        "approvalMutationStatus": null,
        "approvalAuthorityStatus": null,
        "owner": {
            "userId": "463663891121963008",
            "nickname": "CAN_A"
        }
    },
    "success": true,
    "code": "200",
    "errorMsg": null,
    "detailErrorMsg": null,
    "traceId": "e449a5b9f9f14aa1915d11bf1e158409.188.17524622866271699"
}