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
Copy file name to clipboardExpand all lines: sources/platform/actors/development/actor_definition/input_schema/specification.md
+12-10Lines changed: 12 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -183,16 +183,18 @@ Rendered input:
183
183
184
184
Properties:
185
185
186
-
| Property | Value | Required | Description |
187
-
| --- | --- | --- | --- |
188
-
|`editor`| One of <ul><li>`textfield`</li><li>`textarea`</li><li>`javascript`</li><li>`python`</li><li>`select`</li><li>`datepicker`</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. |
|`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`. |
0 commit comments