diff --git a/sources/platform/actors/development/actor_definition/input_schema/specification.md b/sources/platform/actors/development/actor_definition/input_schema/specification.md
index 0c08b177f..9a8412985 100644
--- a/sources/platform/actors/development/actor_definition/input_schema/specification.md
+++ b/sources/platform/actors/development/actor_definition/input_schema/specification.md
@@ -183,16 +183,16 @@ Rendered input:
Properties:
-| Property | Value | Required | Description |
-| --- | --- | --- | --- |
-| `editor` | One of
- `textfield`
- `textarea`
- `javascript`
- `python`
- `select`
- `datepicker`
- `hidden`
| Yes | Visual editor used for
the input field. |
-| `pattern` | String | No | Regular expression that will be
used to validate the input.
If validation fails,
the Actor will not run. |
-| `minLength` | Integer | No | Minimum length of the string. |
-| `maxLength` | Integer | No | Maximum length of the string. |
-| `enum` | [String] | Required if
`editor`
is `select` | Using this field, you can limit values
to the given array of strings.
Input will be displayed as select box. |
-| `enumTitles` | [String] | No | Titles for the `enum` keys described. |
-| `nullable` | Boolean | No | Specifies whether `null`
is an allowed value. |
-| `isSecret` | Boolean | No | Specifies whether the input field
will be stored encrypted.
Only available
with `textfield` and `textarea` editors. |
+| Property | Value | Required | Description |
+|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
+| `editor` | One of - `textfield`
- `textarea`
- `javascript`
- `python`
- `select`
- `datepicker`
- `dataset`
- `keyValueStore`
- `requestQueue`
- `hidden`
| Yes | Visual editor used for
the input field. |
+| `pattern` | String | No | Regular expression that will be
used to validate the input.
If validation fails,
the Actor will not run. |
+| `minLength` | Integer | No | Minimum length of the string. |
+| `maxLength` | Integer | No | Maximum length of the string. |
+| `enum` | [String] | Required if
`editor`
is `select` | Using this field, you can limit values
to the given array of strings.
Input will be displayed as select box. |
+| `enumTitles` | [String] | No | Titles for the `enum` keys described. |
+| `nullable` | Boolean | No | Specifies whether `null`
is an allowed value. |
+| `isSecret` | Boolean | No | Specifies whether the input field
will be stored encrypted.
Only available
with `textfield` and `textarea` editors. |
:::note Regex escape