Skip to content

Commit

Permalink
Make name and type required for datasets in spec (#2305)
Browse files Browse the repository at this point in the history
Signed-off-by: wslulciuc <[email protected]>

Signed-off-by: wslulciuc <[email protected]>
  • Loading branch information
wslulciuc committed Dec 13, 2022
1 parent 90b2eff commit f66007e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions spec/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -774,8 +774,8 @@ components:
schema:
type: string
example: dataset:food_delivery:public.delivery_7_days
description: The ID of the node. A node can either be a dataset node, a dataset field node or a job node.
The format of nodeId for dataset is `dataset:<namespace_of_dataset>:<name_of_the_dataset>`, for dataset field
description: The ID of the node. A node can either be a dataset node, a dataset field node or a job node.
The format of nodeId for dataset is `dataset:<namespace_of_dataset>:<name_of_the_dataset>`, for dataset field
is `datasetField:<namespace_of_dataset>:<name_of_the_dataset>:<name_of_field>`, and for job is
`job:<namespace_of_the_job>:<name_of_the_job>`.
required: true
Expand Down Expand Up @@ -1165,6 +1165,9 @@ components:
description:
description: The description of the field.
type: string
required:
- name
- type
tags:
description: List of tags.
type: array
Expand Down

0 comments on commit f66007e

Please sign in to comment.