blob: 75b72151b00d0906d55e73a910373d1d8eee848d [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001{
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "description": "fields describing the status of a request",
4 "properties": {
5 "percentProgress": {
6 "description": "percentage complete estimate from 0 to 100",
7 "type": "number"
8 },
9 "requestState": {
10 "description": "short description of the instantiation state",
11 "type": "string"
12 },
13 "statusMessage": {
14 "description": "additional descriptive information about the status",
15 "type": "string"
16 },
17 "timestamp": {
18 "description": "GMT Datetime the requestStatus was created e.g.: Wed, 15 Oct 2014 13:01:52 GMT",
19 "type": "string"
20 },
21 "wasRolledBack": {
22 "description": "true or false boolean indicating whether the request was rolled back",
23 "type": "boolean"
24 }
25
26 },
27 "required": [
28 "requestState",
29 "timestamp"
30 ],
31 "type": "object"
32}