Merge "Logging improvements"
[vid.git] / vid-app-common / src / main / resources / json / mso / requestError
1 {\r
2     "$schema": "http://json-schema.org/draft-04/schema#",\r
3     "description": "standard request error data structure",\r
4     "properties": {\r
5         "messageId": {\r
6             "description": "Unique message identifier of the format ABCnnnn where ABC is either SVC for Service Exceptions or POL for Policy Exception",\r
7             "type": "string"\r
8         },\r
9         "text": {\r
10             "description": "Message text, with replacement variables marked with %n, where n is an index into the list of <variables> elements, starting at 1",\r
11             "type": "string"\r
12         },\r
13         "url": {\r
14             "description": "Hyperlink to a detailed error resource e.g., an HTML page for browser user agents",\r
15             "type": "string"\r
16         },\r
17         "variables": {\r
18             "description": "List of zero or more strings that represent the contents of the variables used by the message text",\r
19             "type": "string"\r
20         }\r
21     },\r
22     "required": [\r
23         "messageId",\r
24         "text"\r
25     ],\r
26     "type": "object"\r
27 }\r