blob: ad9ea31707c7719330ed3eaf3a8912318c6c36d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "chrome://global/content/shopping/analyze_response.schema.json",
"title": "Analyze response",
"type": "object",
"properties": {
"status": {
"description": "Current Analysis status",
"type": "string",
"examples": [
"pending",
"in_progress",
"completed",
"not_analyzable",
"unprocessable",
"page_not_supported",
"not_enough_reviews"
]
}
},
"required": ["status"]
}
|