forked from m-murasovs/amazon-bestsellers-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INPUT_SCHEMA.json
31 lines (31 loc) · 1.26 KB
/
INPUT_SCHEMA.json
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
{
"title": "Amazon Best Sellers crawler",
"type": "object",
"schemaVersion": 1,
"properties": {
"domain": {
"title": "Domain",
"type": "string",
"description": "Select the URL of the Amazon Best Sellers page you want to extract.",
"editor": "textarea",
"default": ""
},
"depthOfCrawl": {
"title": "Depth of crawl",
"type": "integer",
"description": "How many subcategories would you like to visit? Minimum working value is 1, maximum is 2. Amazon Best Sellers includes 37 main categories. All of these have at least one more level of subcategorisation. Setting a crawl depth of 2 returns roughly 550 subcategories, each with 100 results. If you would like to extract more subcategories, please, get in touch.",
"prefill": 1,
"default": 1,
"editor": "number"
},
"proxy": {
"title": "Proxy configuration",
"type": "object",
"description": "Select proxies to be used by your crawler. For more information, visit https://docs.apify.com/proxy",
"prefill": {
"useApifyProxy": true
},
"editor": "proxy"
}
}
}