summaryrefslogtreecommitdiffstats
path: root/toolkit/components/shopping/schemas/recommendations_response.schema.json
blob: da4a69c26d33df8cd371050e12d61877c677ddf0 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "chrome://global/content/shopping/recommendations_response.schema.json",
  "title": "Recommendations",
  "description": "Recommendations for a product",
  "type": "array",
  "items": {
    "$ref": "#/$defs/recommendation"
  },
  "$defs": {
    "recommendation": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "image_url": {
          "type": "string"
        },
        "price": {
          "type": "string"
        },
        "currency": {
          "type": "string",
          "examples": ["USD"]
        },
        "grade": {
          "description": "Reliability grade for the product's reviews.",
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "examples": ["A", "B", "C", "D", "F"]
        },
        "adjusted_rating": {
          "type": "number"
        },
        "analysis_url": {
          "type": "string"
        },
        "sponsored": {
          "type": "boolean"
        },
        "aid": {
          "type": "string"
        }
      }
    }
  }
}