diff --git a/common-pipeline/operators/uihints-v3-schema.json b/common-pipeline/operators/uihints-v3-schema.json index 5831f26..a84ff40 100644 --- a/common-pipeline/operators/uihints-v3-schema.json +++ b/common-pipeline/operators/uihints-v3-schema.json @@ -283,13 +283,24 @@ "datepickerRange", "timefield", "timestampfield", + "slider", "code", "list", "hidden" ] }, "increment": { - "description": "Determines the increment/decrement value for the spinner control only", + "description": "Determines the step value to increment/decrement for spinner and slider controls", + "type": "number", + "default": 1 + }, + "min_value": { + "description": "Determines the minimum value for the slider control only", + "type": "number", + "default": 1 + }, + "max_value": { + "description": "Determines the max value for the slider control only", "type": "number", "default": 1 },