Source code
Revision control
Copy as Markdown
Other Tools
{
"$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": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"currency": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"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"
}
}
}
}
}