blob: 61f10400e4179dbeeb754aba6ea39ad773d86093 [file] [log] [blame]
jimmydot3982f4f2017-05-07 14:58:24 -04001{
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "description": "request structure",
4 "type": "object",
5 "properties": {
6 "finishTime": {
7 "description": "Date and time the request was finished in GMT with the following sample format: Wed, 15 Oct 2014 13:01:52 GMT",
8 "type": "string"
9 },
10 "instanceIds": {},
11 "requestDetails": {},
12 "requestId": {
13 "description": "UUID for the request generated by the instantiation service",
14 "type": "string",
15 "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
16 },
17 "requestScope": {
18 "description": "short description of the entity being operated on",
Sonsino, Ofir (os0695)c72d5652018-07-10 14:20:54 +030019 "type": "string"
jimmydot3982f4f2017-05-07 14:58:24 -040020 },
21 "requestStatus": {},
22 "requestType": {
23 "description": "short description of the action being performed on the requestScope",
Sonsino, Ofir (os0695)c72d5652018-07-10 14:20:54 +030024 "type": "string"
jimmydot3982f4f2017-05-07 14:58:24 -040025 },
26 "startTime": {
27 "description": "Date and time the request was created in GMT with the following sample format: Wed, 15 Oct 2014 13:01:52 GMT",
28 "type": "string"
29 }
30 },
31 "required": ["requestDetails", "requestId", "requestScope", "requestType", "startTime"]
32}