blob: 30f641190ffcceaac2ff29d8e04985171fae57e5 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001{
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "description": "provides the instanceId and requestId associated with the request",
4 "type": "object",
5 "properties": {
6 "instanceId": {
7 "description": "UUID for the service instance",
8 "type": "string",
9 "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}$"
10 },
11 "requestId": {
12 "description": "UUID for the request",
13 "type": "string",
14 "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}$"
15 }
16 },
17 "required": [ "instanceId", "requestId" ]
18}