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 6939af0c39..f0832148fe 100644 --- a/sources/platform/actors/development/actor_definition/input_schema/specification.md +++ b/sources/platform/actors/development/actor_definition/input_schema/specification.md @@ -234,6 +234,8 @@ The `anyDate` property renders a date picker that accepts both absolute and rela The `fileupload` editor enables users to specify a file as input. The input is passed to the Actor as a string. It is the Actor author's responsibility to interpret this string, including validating its existence and format. +The editor makes it easier to users to upload the file to a key-value store of their choice. + ![Apify Actor input schema - fileupload input](./images/input-schema-fileupload-input.png) The user provides either a URL or uploads the file to a key-value store (existing or new). @@ -440,7 +442,7 @@ Properties: | Property | Value | Required | Description | | --- | --- | --- | --- | -| `editor` | One of | Yes | UI editor used for input. | +| `editor` | One of | Yes | UI editor used for input. | | `placeholderKey` | String | No | Placeholder displayed for
key field when no value is specified.
Works only with `keyValue` editor. | | `placeholderValue` | String | No | Placeholder displayed in value field
when no value is provided.
Works only with `keyValue` and
`stringList` editors. | | `patternKey` | String | No | Regular expression that
will be used to validate
the keys of items in the array.
Works only with `keyValue`
editor. | @@ -462,6 +464,8 @@ Editor type `requestListSources` supports input in formats defined by the [sourc Editor type `globs` maps to the Crawlee's [GlobInput](https://crawlee.dev/api/core#GlobInput) used by the [UrlPatterObject](https://crawlee.dev/api/core#UrlPatternObject). +Editor type `fileupload` enables users to specify list of files as input. The input is passed to the Actor as an array of strings. It is the Actor author's responsibility to interpret the strings, including validating the file existence and format. The editor makes it easier for users to upload the files to a key-value store they choose. + Editor type `select` allows the user to pick items from a select, providing multiple choices. Please check this example of how to define the multiselect field: ```json