-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINPUT_SCHEMA.json
More file actions
24 lines (24 loc) · 783 Bytes
/
Copy pathINPUT_SCHEMA.json
File metadata and controls
24 lines (24 loc) · 783 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
{
"title": "Made-in-China.com Scraper Input",
"type": "object",
"schemaVersion": 1,
"properties": {
"searchKeywords": {
"title": "Search Keywords",
"type": "array",
"description": "List of keywords to search for on Made-in-China.com",
"editor": "stringList",
"default": ["bluetooth speaker"],
"items": { "type": "string" }
},
"maxPages": {
"title": "Max Pages Per Keyword",
"type": "integer",
"description": "Maximum number of search result pages to scrape per keyword (each page has ~20-30 products)",
"default": 3,
"minimum": 1,
"maximum": 50
}
},
"required": ["searchKeywords"]
}