Aharoni, Pavel (pa0916) | ca3cb01 | 2018-10-22 15:29:57 +0300 | [diff] [blame^] | 1 | {
|
| 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",
|
| 19 | "type": "string"
|
| 20 | },
|
| 21 | "requestStatus": {},
|
| 22 | "requestType": {
|
| 23 | "description": "short description of the action being performed on the requestScope",
|
| 24 | "type": "string"
|
| 25 | },
|
| 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 | } |