Backed out changeset f594e6f00208 (bug 1940883) for causing crashes in bug 1941164.
[gecko.git] / toolkit / components / shopping / schemas / analysis_status_response.schema.json
blobbb116280de5290c6d158344a43c149d99b2bf68a
2   "$schema": "http://json-schema.org/draft-07/schema#",
3   "$id": "chrome://global/content/shopping/analysis_status_response.schema.json",
4   "title": "Analysis Status response",
5   "type": "object",
6   "properties": {
7     "status": {
8       "description": "Current Analysis status",
9       "type": "string",
10       "examples": [
11         "not_found",
12         "pending",
13         "in_progress",
14         "completed",
15         "not_analyzable",
16         "unprocessable",
17         "page_not_supported",
18         "not_enough_reviews",
19         "stale"
20       ]
21     },
22     "progress": {
23       "description": "Current Analysis progress 0.0..100.0",
24       "type": "number",
25       "examples": [10.0]
26     }
27   },
28   "required": ["status", "progress"]