org.onap migration
[vid.git] / vid-app-common / src / main / resources / json / mso / requestStatus
1 {\r
2     "$schema": "http://json-schema.org/draft-04/schema#",\r
3     "description": "fields describing the status of a request",\r
4     "properties": {\r
5         "percentProgress": {\r
6             "description": "percentage complete estimate from 0 to 100",\r
7             "type": "number"\r
8         },\r
9         "requestState": {\r
10             "description": "short description of the instantiation state",\r
11             "type": "string"\r
12         },\r
13         "statusMessage": {\r
14             "description": "additional descriptive information about the status",\r
15             "type": "string"\r
16         },\r
17         "timestamp": {\r
18             "description": "GMT Datetime the requestStatus was created e.g.: Wed, 15 Oct 2014 13:01:52 GMT",\r
19             "type": "string"\r
20         },\r
21         "wasRolledBack": {\r
22                         "description": "true or false boolean indicating whether the request was rolled back",\r
23                         "type": "boolean"\r
24                 }\r
25         \r
26     },\r
27     "required": [\r
28         "requestState",\r
29         "timestamp"\r
30     ],\r
31     "type": "object"\r
32 }\r