diff --git a/templates/cli-start/.actor/actor.json b/templates/cli-start/.actor/actor.json index 3b184eed9..ab49254d1 100644 --- a/templates/cli-start/.actor/actor.json +++ b/templates/cli-start/.actor/actor.json @@ -26,5 +26,9 @@ }, "required": ["name"] }, + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/cli-start/.actor/dataset_schema.json b/templates/cli-start/.actor/dataset_schema.json new file mode 100644 index 000000000..28ba70848 --- /dev/null +++ b/templates/cli-start/.actor/dataset_schema.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": { + "overview": { + "title": "Overview", + "transformation": { + "fields": ["name", "greeting"] + }, + "display": { + "component": "table", + "properties": { + "name": { + "label": "Name", + "format": "text" + }, + "greeting": { + "label": "Greeting", + "format": "text" + } + } + } + } + } +} diff --git a/templates/cli-start/.actor/output_schema.json b/templates/cli-start/.actor/output_schema.json new file mode 100644 index 000000000..5d3010d86 --- /dev/null +++ b/templates/cli-start/.actor/output_schema.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": { + "results": { + "type": "string", + "title": "Results", + "template": "{{links.apiDefaultDatasetUrl}}/items" + } + } +} diff --git a/templates/js-bootstrap-cheerio-crawler/.actor/actor.json b/templates/js-bootstrap-cheerio-crawler/.actor/actor.json index 8f5a06226..038d4ad6e 100644 --- a/templates/js-bootstrap-cheerio-crawler/.actor/actor.json +++ b/templates/js-bootstrap-cheerio-crawler/.actor/actor.json @@ -9,5 +9,10 @@ "templateId": "js-bootstrap-cheerio-crawler", "generatedBy": "" }, + "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/js-bootstrap-cheerio-crawler/.actor/dataset_schema.json b/templates/js-bootstrap-cheerio-crawler/.actor/dataset_schema.json new file mode 100644 index 000000000..e4a74d29d --- /dev/null +++ b/templates/js-bootstrap-cheerio-crawler/.actor/dataset_schema.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": { + "overview": { + "title": "Overview", + "transformation": { + "fields": ["title", "url"] + }, + "display": { + "component": "table", + "properties": { + "title": { + "label": "Title", + "format": "text" + }, + "url": { + "label": "URL", + "format": "link" + } + } + } + } + } +} diff --git a/templates/js-bootstrap-cheerio-crawler/.actor/input_schema.json b/templates/js-bootstrap-cheerio-crawler/.actor/input_schema.json new file mode 100644 index 000000000..8d66431ed --- /dev/null +++ b/templates/js-bootstrap-cheerio-crawler/.actor/input_schema.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://apify.com/schemas/v1/input.ide.json", + "title": "Actor input", + "type": "object", + "schemaVersion": 1, + "properties": {}, + "required": [] +} diff --git a/templates/js-bootstrap-cheerio-crawler/.actor/output_schema.json b/templates/js-bootstrap-cheerio-crawler/.actor/output_schema.json new file mode 100644 index 000000000..5d3010d86 --- /dev/null +++ b/templates/js-bootstrap-cheerio-crawler/.actor/output_schema.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": { + "results": { + "type": "string", + "title": "Results", + "template": "{{links.apiDefaultDatasetUrl}}/items" + } + } +} diff --git a/templates/js-empty/.actor/actor.json b/templates/js-empty/.actor/actor.json index 1fab06922..834e2fe88 100644 --- a/templates/js-empty/.actor/actor.json +++ b/templates/js-empty/.actor/actor.json @@ -10,5 +10,10 @@ "templateId": "js-empty", "generatedBy": "" }, + "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/js-empty/.actor/dataset_schema.json b/templates/js-empty/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/js-empty/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/js-empty/.actor/input_schema.json b/templates/js-empty/.actor/input_schema.json new file mode 100644 index 000000000..8d66431ed --- /dev/null +++ b/templates/js-empty/.actor/input_schema.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://apify.com/schemas/v1/input.ide.json", + "title": "Actor input", + "type": "object", + "schemaVersion": 1, + "properties": {}, + "required": [] +} diff --git a/templates/js-empty/.actor/output_schema.json b/templates/js-empty/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/js-empty/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/js-standby/.actor/actor.json b/templates/js-standby/.actor/actor.json index d966a09c4..9fef1207a 100644 --- a/templates/js-standby/.actor/actor.json +++ b/templates/js-standby/.actor/actor.json @@ -11,5 +11,10 @@ "templateId": "js-standby", "generatedBy": "" }, + "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/js-standby/.actor/dataset_schema.json b/templates/js-standby/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/js-standby/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/js-standby/.actor/input_schema.json b/templates/js-standby/.actor/input_schema.json new file mode 100644 index 000000000..8d66431ed --- /dev/null +++ b/templates/js-standby/.actor/input_schema.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://apify.com/schemas/v1/input.ide.json", + "title": "Actor input", + "type": "object", + "schemaVersion": 1, + "properties": {}, + "required": [] +} diff --git a/templates/js-standby/.actor/output_schema.json b/templates/js-standby/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/js-standby/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/python-empty/.actor/actor.json b/templates/python-empty/.actor/actor.json index aa2f0886b..b06f7b336 100644 --- a/templates/python-empty/.actor/actor.json +++ b/templates/python-empty/.actor/actor.json @@ -10,5 +10,10 @@ "templateId": "python-empty", "generatedBy": "" }, + "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/python-empty/.actor/dataset_schema.json b/templates/python-empty/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/python-empty/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/python-empty/.actor/input_schema.json b/templates/python-empty/.actor/input_schema.json new file mode 100644 index 000000000..8d66431ed --- /dev/null +++ b/templates/python-empty/.actor/input_schema.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://apify.com/schemas/v1/input.ide.json", + "title": "Actor input", + "type": "object", + "schemaVersion": 1, + "properties": {}, + "required": [] +} diff --git a/templates/python-empty/.actor/output_schema.json b/templates/python-empty/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/python-empty/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/python-mcp-empty/.actor/actor.json b/templates/python-mcp-empty/.actor/actor.json index 47ecb3f7f..3ec6d2e23 100644 --- a/templates/python-mcp-empty/.actor/actor.json +++ b/templates/python-mcp-empty/.actor/actor.json @@ -19,6 +19,10 @@ "properties": {}, "required": [] }, + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile", "webServerMcpPath": "/mcp" } diff --git a/templates/python-mcp-empty/.actor/dataset_schema.json b/templates/python-mcp-empty/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/python-mcp-empty/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/python-mcp-empty/.actor/output_schema.json b/templates/python-mcp-empty/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/python-mcp-empty/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/python-mcp-proxy/.actor/actor.json b/templates/python-mcp-proxy/.actor/actor.json index 853c347ce..220ea2a1a 100644 --- a/templates/python-mcp-proxy/.actor/actor.json +++ b/templates/python-mcp-proxy/.actor/actor.json @@ -19,6 +19,10 @@ "properties": {}, "required": [] }, + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile", "webServerMcpPath": "/mcp" } diff --git a/templates/python-mcp-proxy/.actor/dataset_schema.json b/templates/python-mcp-proxy/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/python-mcp-proxy/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/python-mcp-proxy/.actor/output_schema.json b/templates/python-mcp-proxy/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/python-mcp-proxy/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/python-scrapy/.actor/actor.json b/templates/python-scrapy/.actor/actor.json index 6b4215b0b..878dcc95d 100644 --- a/templates/python-scrapy/.actor/actor.json +++ b/templates/python-scrapy/.actor/actor.json @@ -11,5 +11,9 @@ "generatedBy": "" }, "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/python-scrapy/.actor/dataset_schema.json b/templates/python-scrapy/.actor/dataset_schema.json new file mode 100644 index 000000000..e4a74d29d --- /dev/null +++ b/templates/python-scrapy/.actor/dataset_schema.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": { + "overview": { + "title": "Overview", + "transformation": { + "fields": ["title", "url"] + }, + "display": { + "component": "table", + "properties": { + "title": { + "label": "Title", + "format": "text" + }, + "url": { + "label": "URL", + "format": "link" + } + } + } + } + } +} diff --git a/templates/python-scrapy/.actor/output_schema.json b/templates/python-scrapy/.actor/output_schema.json new file mode 100644 index 000000000..5d3010d86 --- /dev/null +++ b/templates/python-scrapy/.actor/output_schema.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": { + "results": { + "type": "string", + "title": "Results", + "template": "{{links.apiDefaultDatasetUrl}}/items" + } + } +} diff --git a/templates/python-standby/.actor/actor.json b/templates/python-standby/.actor/actor.json index b44669ba2..fb53389dd 100644 --- a/templates/python-standby/.actor/actor.json +++ b/templates/python-standby/.actor/actor.json @@ -11,5 +11,10 @@ "templateId": "python-standby", "generatedBy": "" }, + "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/python-standby/.actor/dataset_schema.json b/templates/python-standby/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/python-standby/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/python-standby/.actor/input_schema.json b/templates/python-standby/.actor/input_schema.json new file mode 100644 index 000000000..8d66431ed --- /dev/null +++ b/templates/python-standby/.actor/input_schema.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://apify.com/schemas/v1/input.ide.json", + "title": "Actor input", + "type": "object", + "schemaVersion": 1, + "properties": {}, + "required": [] +} diff --git a/templates/python-standby/.actor/output_schema.json b/templates/python-standby/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/python-standby/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/ts-bootstrap-cheerio-crawler/.actor/actor.json b/templates/ts-bootstrap-cheerio-crawler/.actor/actor.json index f3f81b733..aa157ee16 100644 --- a/templates/ts-bootstrap-cheerio-crawler/.actor/actor.json +++ b/templates/ts-bootstrap-cheerio-crawler/.actor/actor.json @@ -9,5 +9,10 @@ "templateId": "ts-bootstrap-cheerio-crawler", "generatedBy": "" }, + "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/ts-bootstrap-cheerio-crawler/.actor/dataset_schema.json b/templates/ts-bootstrap-cheerio-crawler/.actor/dataset_schema.json new file mode 100644 index 000000000..e4a74d29d --- /dev/null +++ b/templates/ts-bootstrap-cheerio-crawler/.actor/dataset_schema.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": { + "overview": { + "title": "Overview", + "transformation": { + "fields": ["title", "url"] + }, + "display": { + "component": "table", + "properties": { + "title": { + "label": "Title", + "format": "text" + }, + "url": { + "label": "URL", + "format": "link" + } + } + } + } + } +} diff --git a/templates/ts-bootstrap-cheerio-crawler/.actor/input_schema.json b/templates/ts-bootstrap-cheerio-crawler/.actor/input_schema.json new file mode 100644 index 000000000..8d66431ed --- /dev/null +++ b/templates/ts-bootstrap-cheerio-crawler/.actor/input_schema.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://apify.com/schemas/v1/input.ide.json", + "title": "Actor input", + "type": "object", + "schemaVersion": 1, + "properties": {}, + "required": [] +} diff --git a/templates/ts-bootstrap-cheerio-crawler/.actor/output_schema.json b/templates/ts-bootstrap-cheerio-crawler/.actor/output_schema.json new file mode 100644 index 000000000..5d3010d86 --- /dev/null +++ b/templates/ts-bootstrap-cheerio-crawler/.actor/output_schema.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": { + "results": { + "type": "string", + "title": "Results", + "template": "{{links.apiDefaultDatasetUrl}}/items" + } + } +} diff --git a/templates/ts-empty/.actor/actor.json b/templates/ts-empty/.actor/actor.json index cbbe54510..ec190b2be 100644 --- a/templates/ts-empty/.actor/actor.json +++ b/templates/ts-empty/.actor/actor.json @@ -10,5 +10,10 @@ "templateId": "ts-empty", "generatedBy": "" }, + "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/ts-empty/.actor/dataset_schema.json b/templates/ts-empty/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/ts-empty/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/ts-empty/.actor/input_schema.json b/templates/ts-empty/.actor/input_schema.json new file mode 100644 index 000000000..8d66431ed --- /dev/null +++ b/templates/ts-empty/.actor/input_schema.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://apify.com/schemas/v1/input.ide.json", + "title": "Actor input", + "type": "object", + "schemaVersion": 1, + "properties": {}, + "required": [] +} diff --git a/templates/ts-empty/.actor/output_schema.json b/templates/ts-empty/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/ts-empty/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/ts-mcp-empty/.actor/actor.json b/templates/ts-mcp-empty/.actor/actor.json index 4647c5863..f96743d0b 100644 --- a/templates/ts-mcp-empty/.actor/actor.json +++ b/templates/ts-mcp-empty/.actor/actor.json @@ -19,6 +19,10 @@ "properties": {}, "required": [] }, + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile", "webServerMcpPath": "/mcp" } diff --git a/templates/ts-mcp-empty/.actor/dataset_schema.json b/templates/ts-mcp-empty/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/ts-mcp-empty/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/ts-mcp-empty/.actor/output_schema.json b/templates/ts-mcp-empty/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/ts-mcp-empty/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/ts-mcp-proxy/.actor/actor.json b/templates/ts-mcp-proxy/.actor/actor.json index 0355a4156..e0dce1fe9 100644 --- a/templates/ts-mcp-proxy/.actor/actor.json +++ b/templates/ts-mcp-proxy/.actor/actor.json @@ -19,6 +19,10 @@ "properties": {}, "required": [] }, + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile", "webServerMcpPath": "/mcp" } diff --git a/templates/ts-mcp-proxy/.actor/dataset_schema.json b/templates/ts-mcp-proxy/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/ts-mcp-proxy/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/ts-mcp-proxy/.actor/output_schema.json b/templates/ts-mcp-proxy/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/ts-mcp-proxy/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +} diff --git a/templates/ts-standby/.actor/actor.json b/templates/ts-standby/.actor/actor.json index 2edc9d7a5..9a50cf288 100644 --- a/templates/ts-standby/.actor/actor.json +++ b/templates/ts-standby/.actor/actor.json @@ -11,5 +11,10 @@ "templateId": "ts-standby", "generatedBy": "" }, + "inputSchema": "./input_schema.json", + "outputSchema": "./output_schema.json", + "storages": { + "dataset": "./dataset_schema.json" + }, "dockerfile": "../Dockerfile" } diff --git a/templates/ts-standby/.actor/dataset_schema.json b/templates/ts-standby/.actor/dataset_schema.json new file mode 100644 index 000000000..4dfe01825 --- /dev/null +++ b/templates/ts-standby/.actor/dataset_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/dataset.ide.json", + "actorSpecification": 1, + "fields": {}, + "views": {} +} diff --git a/templates/ts-standby/.actor/input_schema.json b/templates/ts-standby/.actor/input_schema.json new file mode 100644 index 000000000..8d66431ed --- /dev/null +++ b/templates/ts-standby/.actor/input_schema.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://apify.com/schemas/v1/input.ide.json", + "title": "Actor input", + "type": "object", + "schemaVersion": 1, + "properties": {}, + "required": [] +} diff --git a/templates/ts-standby/.actor/output_schema.json b/templates/ts-standby/.actor/output_schema.json new file mode 100644 index 000000000..54d846940 --- /dev/null +++ b/templates/ts-standby/.actor/output_schema.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://apify.com/schemas/v1/output.ide.json", + "actorOutputSchemaVersion": 1, + "title": "Output schema", + "properties": {} +}