-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINPUT_SCHEMA.json
More file actions
34 lines (34 loc) · 1019 Bytes
/
INPUT_SCHEMA.json
File metadata and controls
34 lines (34 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"title": "Schema for the my actor",
"type": "object",
"schemaVersion": 1,
"properties": {
"startUrls": {
"sectionCaption": "Basic configuration",
"title": "Start URLs",
"type": "array",
"description": "URLs to start with",
"prefill": [
{
"url": "https://apify.com"
}
],
"editor": "requestListSources"
},
"proxyUrl": {
"title": "Proxy URL",
"type": "string",
"maxLength": 1000,
"description": "Proxy to use (optional)",
"editor": "textfield"
},
"pageFunction": {
"title": "Page function",
"type": "string",
"description": "Function executed for each request",
"prefill": "async function pageFunction(context) {\n\n}",
"editor": "javascript"
}
},
"required": ["startUrls", "pageFunction"]
}