Skip to content

Commit 5a32a30

Browse files
authored
fix: add missing python editor (#663)
1 parent bf1af7b commit 5a32a30

File tree

1 file changed

+10
-10
lines changed
  • sources/platform/actors/development/actor_definition/input_schema

1 file changed

+10
-10
lines changed

sources/platform/actors/development/actor_definition/input_schema/specification.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -158,16 +158,16 @@ Rendered input:
158158

159159
Properties:
160160

161-
| Property | Value | Required | Description |
162-
|--------------|-------------------------------------------------------------------------------------------|--------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
163-
| `editor` | One of <br/>`textfield`, <br/>`textarea`, <br/>`javascript`, <br/>`select`,<br/>`datepicker`, <br/>`hidden` | Yes | Visual editor used for <br/>the input field. |
164-
| `pattern` | String | No | Regular expression that will be <br/>used to validate the input. <br/> If validation fails, <br/>the actor will not run. |
165-
| `minLength` | Integer | No | Minimum length of the string. |
166-
| `maxLength` | Integer | No | Maximum length of the string. |
167-
| `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. |
168-
| `enumTitles` | [String] | No | Titles for the `enum` keys described. |
169-
| `nullable` | Boolean | No | Specifies whether `null` <br/>is an allowed value. |
170-
| `isSecret` | Boolean | No | Specifies whether the input field<br />will be stored encrypted.<br />Only available <br />with `textfield` and `textarea` editors. |
161+
| Property | Value | Required | Description |
162+
|--------------|-----------------------------------------------------------------------------------------------------------------------|--------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
163+
| `editor` | One of <br/>`textfield`, <br/>`textarea`, <br/>`javascript`, <br/>`python`, <br/>`select`,<br/>`datepicker`, <br/>`hidden` | Yes | Visual editor used for <br/>the input field. |
164+
| `pattern` | String | No | Regular expression that will be <br/>used to validate the input. <br/> If validation fails, <br/>the actor will not run. |
165+
| `minLength` | Integer | No | Minimum length of the string. |
166+
| `maxLength` | Integer | No | Maximum length of the string. |
167+
| `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. |
168+
| `enumTitles` | [String] | No | Titles for the `enum` keys described. |
169+
| `nullable` | Boolean | No | Specifies whether `null` <br/>is an allowed value. |
170+
| `isSecret` | Boolean | No | Specifies whether the input field<br />will be stored encrypted.<br />Only available <br />with `textfield` and `textarea` editors. |
171171

172172
> When using escape characters `\` for the regular expression in the `pattern` field, be sure to escape them to avoid invalid JSON issues. For example, the regular expression `https:\/\/(www\.)?apify\.com\/.+` would become `https:\\/\\/(www\\.)?apify\\.com\\/.+`.
173173

0 commit comments

Comments
 (0)