Bool
| Boolean | 3 (Value Bool) | | |
DateTime
| Datetime | 4 (Value Datetime) | | |
DayOfWeek
| JSON (String) | 6 (Value String) | {"Mon":true,"Tue":true,"Wed":true,"Thu":true,"Fri":true,"Sat":false,"Sun":false}
| Day of the week |
Double
| Float | 5 (Value Float) | | |
DoubleSlider
| JSON (String) | 6 (Value String) | {"disable_min":false,"slider_min":0,"target_min":5,"target_max":20,"slider_max":25,"disable_max":false, "slider_color": "#ff0000"}
| |
DurationConstraint
| JSON (String) | 6 (Value String) | {"Min hc":"8:00","Min sc":"8:00","Max sc":"8:00","Max hc":"8:00"}
optionally labels can be overridden:
{
"Min hc": "09:00",
"Min hc Label": "Von1",
"Min sc": "09:00",
"Min sc Label": "Bis1",
"Max sc": "10:00",
"Max sc Label": "Von1",
"Max hc": "10:00",
"Max hc Label": "Bis2"
} | each value is a duration |
FloatConstraint
| JSON (String) | 6 (Value String) | {"Min hc":"3","Min sc":"4","Max sc":"5","Max hc":"6"} optionally labels can be overridden:
{
"Min hc": "3",
"Min hc Label": "Min1",
"Min sc": "4",
"Min sc Label": "Min2",
"Max sc": "5",
"Max sc Label": "Max1",
"Max hc": "6",
"Max hc Label": "Max22"
}
| |
FromToTime
| JSON (String) | 6 (Value String) | {"from": "08:00", "to": "12:00"}
| New in 7.0 |
FromToTimeBreakMin
| JSON (String) | 6 (Value String) | {"from": "08:00", "to": "12:00", "break_min": 30}
| New in 7.1 |
HalfDurationConstraint
| JSON (String) | 6 (Value String) | {"sc":"8:00","hc":"9:00"}
optionally, Labels can be overridden with {"sc": "08:00", "hc": "09:00", "sc Label": "Min", "hc Label": "Max"}
| |
HalfFloatConstraint
| JSON (String) | 6 (Value String) | {"sc":"0.7","hc":"0.6"}
optionally, Labels can be overridden with {"sc": "123", "hc": "125", "sc Label": "Min", "hc Label": "Max"}
| |
Integer
(Zahl before 7.1) | Integer | 5 (Value Float) | | New from 7.1: Renamed to Integer , Zahl continues to work |
NullableBool
| Boolean or Null | 3 (Value Bool) | | |
OpeningHours
| JSON (String) | 6 (Value String) | {"from1":"06:00","to1":"12:00","from2":"13:00","to2":"18:00"}
| |
PositiveDouble
| Float | 5 (Value Float) | | New from 7.1: value >= 0 |
PositiveInteger
| Integer | 5 (Value Float) | | New from 7.1: value >= 0 |
QuadDuration
| JSON (String) | 6 (Value String) | {
"duration1":"",
"duration2":"",
"duration3":"",
"duration4":"",
"duration1 Label":"Duration 1",
"duration2 Label":"Duration 2",
"duration3 Label":"Duration 3",
"duration4 Label":"Duration 4",
"duration1 Visible":true,
"duration2 Visible":true,
"duration3 Visible":true,
"duration4 Visible":false
}
| New in 7.1 Four values with fixed position, customized label and customized visibility. |
Selection
| JSON (String) | 6 (Value String) | [{"val_text":"Eins", "val_id": 1}, {"val_text": "Zwei", "val_id": 2}]
| ID-based selection list IDs are integers The selected item is identified with its ID in the "Zahl" column |
Selection2
| JSON (String) | 6 (Value String) | [{"Name":"Item 1", "Selected": true}, {"Name": "Item 2", "Selected": false}]
| |
Shift
| JSON (String) | 6 (Value String) | {"name":"Morning",
"from1":"08:00",
"to1":"10:00",
"from2":"12:00",
"to2":"18:00"} optionally, labels can be overriden for all inputs (name, from1, to1, from2, to2)
{"name Label":"Shift Name","from1 Label":"Von","to1 Label":"Bis",
"from2":"12:00","to2":"18:00"}
or the can be removed by setting them to ““ allowing for a nicer layout with several lines:  | New in 7.1 |
ShiftGroupSelection
| JSON (String) | 6 (Value String) | [{"Name":"SG1","Selected":false},{"Name":"SG2","Selected":false}]
| |
SingleDuration
| String | 6 (Value String) | | |
String
| String | 6 (Value String) | | |
Textarea
| String | 6 (Value String) | | New in 7.1 |
Time
| String | 6 (Value String) | 23:15
| New in 7.0 |
TimestampConstraint
| JSON (String) | 6 (Value String) | {"Min hc":"09:00","Min sc":"09:00","Max sc":"10:00","Max hc":"10:00"}
optionally labels can be overridden:
{
"Min hc": "09:00",
"Min hc Label": "Von1",
"Min sc": "09:00",
"Min sc Label": "Bis1",
"Max sc": "10:00",
"Max sc Label": "Von1",
"Max hc": "10:00",
"Max hc Label": "Bis2"
} | each value is a time (limited to 0-24) |
ValueWithSelection
| JSON (String) | 6 (Value String) | {"Value": "3", "Selection": [{"Name":"Month(s)", "Selected": true}, {"Name": "Week(s)", "Selected": false}] }
| New in 7.1 |