Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions packages/actor-scraper/web-scraper/INPUT_SCHEMA.json
Original file line number Diff line number Diff line change
Expand Up @@ -297,19 +297,25 @@
"title": "Dataset name",
"type": "string",
"description": "Name or ID of the dataset that will be used for storing results. If left empty, the default dataset of the run will be used.",
"editor": "textfield"
"editor": "textfield",
"resourceType": "dataset",
"resourcePermissions": ["READ", "WRITE"]
},
"keyValueStoreName": {
"title": "Key-value store name",
"type": "string",
"description": "Name or ID of the key-value store that will be used for storing records. If left empty, the default key-value store of the run will be used.",
"editor": "textfield"
"editor": "textfield",
"resourceType": "keyValueStore",
"resourcePermissions": ["READ", "WRITE"]
},
"requestQueueName": {
"title": "Request queue name",
"type": "string",
"description": "Name of the request queue that will be used for storing requests. If left empty, the default request queue of the run will be used.",
"editor": "textfield"
"editor": "textfield",
"resourceType": "requestQueue",
"resourcePermissions": ["READ", "WRITE"]
}
},
"required": ["startUrls", "pageFunction", "proxyConfiguration"]
Expand Down
Loading