aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/resources/json/mso/requestReferences
blob: 30f641190ffcceaac2ff29d8e04985171fae57e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "provides the instanceId and requestId associated with the request",
			"type": "object",
			"properties": { 
		        "instanceId": {
			        "description": "UUID for the service instance",
			        "type": "string",
					"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}$"
				},
		        "requestId": {
			        "description": "UUID for the request",
			        "type": "string",
					"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}$"
				}
			},
			"required": [ "instanceId", "requestId" ]
}