Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: mention larger allowed input schema size #1226

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You can specify input schema for an Actor in multiple ways:
- If you omit the `input` field in the `.actor/actor.json` file, the system will look for an `INPUT_SCHEMA.json` file in the `.actor` directory.
- In the absence of that file, it will search for an `INPUT_SCHEMA.json` file in the Actor's root directory.

The max allowed size for the input schema file is 100 kB. When you provide an input schema, the system will validate the input data passed to the Actor during execution (via the API or the Apify Console) against the specified schema to ensure compliance before starting the Actor.
The max allowed size for the input schema file is 500 kB. When you provide an input schema, the system will validate the input data passed to the Actor during execution (via the API or the Apify Console) against the specified schema to ensure compliance before starting the Actor.

:::note Validation aid

Expand Down
2 changes: 1 addition & 1 deletion sources/platform/limits.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ The tables below demonstrate the Apify platform's default resource limits. For A
</tr>
<tr>
<td>Maximum size of Actor input schema</td>
<td colspan="4">100&nbsp;kB</td>
<td colspan="4">500&nbsp;kB</td>
</tr>
<tr>
<td>Maximum number of Actors per user</td>
Expand Down