From f87b433436147b730d2526e906fc4439ca0398a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hanu=C5=A1?= Date: Sun, 5 Jul 2026 13:58:23 +0200 Subject: [PATCH] docs(apify-actor-development): require explicit `.inputSchema` reference in actor.json (auto-discovery deprecated) --- skills/apify-actor-development/SKILL.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skills/apify-actor-development/SKILL.md b/skills/apify-actor-development/SKILL.md index ce02412..6f12d8b 100644 --- a/skills/apify-actor-development/SKILL.md +++ b/skills/apify-actor-development/SKILL.md @@ -238,6 +238,8 @@ See [references/actor-json.md](references/actor-json.md) for complete actor.json See [references/input-schema.md](references/input-schema.md) for input schema structure and examples. +When you create an input schema file, reference it explicitly from `.actor/actor.json` — either inline (`"inputSchema": { "type": "object", ... }`) or by path (`"inputSchema": "./input_schema.json"`, relative to `.actor/`). Do not rely on auto-discovery of `.actor/INPUT_SCHEMA.json` or root `INPUT_SCHEMA.json`; that fallback is deprecated per the input-schema specification and may be removed in a future platform release. The deprecated `.input` field is still recognized for backwards compatibility but should not be used in new Actors. + ## Output schema See [references/output-schema.md](references/output-schema.md) for output schema structure, examples, and template variables.