1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "chrome://global/content/shopping/analysis_status_request.schema.json",
"title": "Analysis Status request",
"type": "object",
"properties": {
"product_id": {
"description": "Product identifier (ASIN / SKU).",
"type": "string",
"examples": ["B07W59LRL9", "5200904.p", "1752657021"]
},
"website": {
"description": "Product websites.",
"type": "string",
"examples": ["amazon.com", "amazon.ca", "bestbuy.com", "walmart.com"]
}
},
"required": ["product_id", "website"]
}
|