You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`editor`| One of <ul><li>`textfield`</li><li>`textarea`</li><li>`javascript`</li><li>`python`</li><li>`select`</li><li>`datepicker`</li><li>`dataset`</li><li>`keyValueStore`</li><li>`requestQueue`</li><li>`hidden`</li></ul> | Yes | Visual editor used for <br/>the input field. |
189
-
|`pattern`| String | No | Regular expression that will be <br/>used to validate the input. <br/> If validation fails, <br/>the Actor will not run. |
190
-
|`minLength`| Integer | No | Minimum length of the string. |
191
-
|`maxLength`| Integer | No | Maximum length of the string. |
192
-
|`enum`|[String]| Required if <br/>`editor` <br/>is `select`| Using this field, you can limit values <br/>to the given array of strings. <br/>Input will be displayed as select box. |
193
-
|`enumTitles`|[String]| No | Titles for the `enum` keys described. |
194
-
|`nullable`| Boolean | No | Specifies whether `null` <br/>is an allowed value. |
195
-
|`isSecret`| Boolean | No | Specifies whether the input field<br />will be stored encrypted.<br />Only available <br />with `textfield` and `textarea` editors. |
196
-
|`isAbsolute`| Boolean | No | Used with `datepicker` editor for absolute date value picker in form `YYYY-MM-DD`. This defaults to `true`. |
197
-
|`isRelative`| Boolean | No | Used with `datepicker` editor for relative input in form `+/- {number} {unit}` e.g. `+ 3 weeks`. Supported units are: days, weeks, months, years.<br/>If only relative input is required, `isAbsolute` needs to be explicitly set to `false`, otherwise both formats are supported. |
|`editor`| One of <ul><li>`textfield`</li><li>`textarea`</li><li>`javascript`</li><li>`python`</li><li>`select`</li><li>`datepicker`</li><li>`dataset`</li><li>`keyValueStore`</li><li>`requestQueue`</li><li>`hidden`</li></ul> | Yes | Visual editor used for <br/>the input field.|
189
+
|`pattern`| String | No | Regular expression that will be <br/>used to validate the input. <br/> If validation fails, <br/>the Actor will not run.|
190
+
|`minLength`| Integer | No | Minimum length of the string.|
191
+
|`maxLength`| Integer | No | Maximum length of the string.|
192
+
|`enum`|[String]| Required if <br/>`editor` <br/>is `select`| Using this field, you can limit values <br/>to the given array of strings. <br/>Input will be displayed as select box.|
193
+
|`enumTitles`|[String]| No | Titles for the `enum` keys described.|
194
+
|`nullable`| Boolean | No | Specifies whether `null` <br/>is an allowed value.|
195
+
|`isSecret`| Boolean | No | Specifies whether the input field<br />will be stored encrypted.<br />Only available <br />with `textfield` and `textarea` editors.|
196
+
|`allowAbsolute`| Boolean | No | Used only with `datepicker` editor for absolute date value picker in form `YYYY-MM-DD`. This defaults to `true`.|
197
+
|`allowRelative`| Boolean | No | Used only with `datepicker` editor for relative input in form `+/- {number} {unit}` e.g. `+ 3 weeks`. Supported units are: days, weeks, months and years.<br/>If only relative input is required, `allowAbsolute` needs to be explicitly set to `false`, otherwise both formats are supported. |
0 commit comments