@@ -697,7 +697,9 @@ components:
697697 schema :
698698 type : string
699699 example : dataset:food_delivery:public.delivery_7_days
700- description : The ID of the node.
700+ description : The ID of the node. A node can either be a dataset node or a job node. The format of
701+ nodeId for dataset is `dataset:<namespace_of_dataset>:<name_of_the_dataset>` and for job is
702+ ` job:<namespace_of_the_job>:<name_of_the_job>` .
701703 required : true
702704
703705 depth :
@@ -850,7 +852,7 @@ components:
850852 $ref : ' #/components/schemas/Source'
851853
852854 DatasetType :
853- type : enum
855+ type : string
854856 enum : [DB_TABLE, STREAM]
855857 description : The type of dataset
856858
@@ -1256,7 +1258,7 @@ components:
12561258 $ref : ' #/components/schemas/Tag'
12571259
12581260 JobType :
1259- type : enum
1261+ type : string
12601262 enum : [BATCH, STREAM, SERVICE]
12611263 description : The type of the job.
12621264
@@ -1690,7 +1692,7 @@ components:
16901692 $ref : ' #/components/schemas/GraphEdge'
16911693
16921694 NodeType :
1693- type : enum
1695+ type : string
16941696 enum : [ JOB, DATASET ]
16951697 description : The type of the diff node.
16961698
@@ -1768,11 +1770,13 @@ components:
17681770 example : food_delivery
17691771 nodeId :
17701772 type : string
1771- description : The ID of the dataset or job node.
1772- example : dataset:food_delivery:public.delivery_7_days
1773+ description : The ID of the node. A node can either be a dataset node or a job node. The format of
1774+ nodeId for dataset is `dataset:<namespace_of_dataset>:<name_of_the_dataset>` and for job is
1775+ ` job:<namespace_of_the_job>:<name_of_the_job>` .
1776+ example : ' dataset:food_delivery:public.delivery_7_days'
17731777
17741778 SearchResultType :
1775- type : enum
1779+ type : string
17761780 enum : [DATASET, JOB]
17771781 description : The type of search result.
17781782 example : DATASET
0 commit comments