diff --git a/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-country-multi.png b/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-country-multi.png
new file mode 100644
index 0000000000..33c4b6c7ad
Binary files /dev/null and b/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-country-multi.png differ
diff --git a/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-country.png b/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-country.png
index f0d637fae6..18d4f87b45 100644
Binary files a/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-country.png and b/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-country.png differ
diff --git a/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-tag-suggestion.png b/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-tag-suggestion.png
new file mode 100644
index 0000000000..c2967b2d66
Binary files /dev/null and b/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-tag-suggestion.png differ
diff --git a/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-tags-multi-suggestion.png b/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-tags-multi-suggestion.png
new file mode 100644
index 0000000000..203b50a8bb
Binary files /dev/null and b/sources/platform/actors/development/actor_definition/input_schema/images/input-schema-tags-multi-suggestion.png differ
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 146a27daa7..937b3e4ca2 100644
--- a/sources/platform/actors/development/actor_definition/input_schema/specification.md
+++ b/sources/platform/actors/development/actor_definition/input_schema/specification.md
@@ -154,17 +154,18 @@ Most types also support additional properties defining, for example, the UI inpu
String is the most common input field type, and provide a number of editors and validations properties:
-| Property | Value | Required | Description |
-|----------|--------|-----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| `editor` | One of:
- `textfield`
- `textarea`
- `javascript`
- `python`
- `select`
- `datepicker`
- `fileupload`
- `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`, `textarea` and `hidden` editors. |
-| `dateType` | One of