summaryrefslogtreecommitdiffstats
path: root/toolkit/components/shopping/schemas/recommendations_request.schema.json
blob: f76b32ea409c621f33c9992eef8b984a68b93b8e (plain)
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/recommendations_request.schema.json",
  "title": "Recommendations 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"]
}