Update APEX example to use JSON Schema plugin
[policy/apex-pdp.git] / examples / examples-grpc / src / main / resources / schemas / CDSResponseCommonHeaderType.json
1 {
2   "$schema": "http://json-schema.org/draft-04/schema#",
3   "type": "object",
4   "properties": {
5     "timestamp": {
6       "type": "string"
7     },
8     "requestId": {
9       "type": "string"
10     },
11     "subRequestId": {
12       "type": "string"
13     },
14     "flag": {
15       "type": "object"
16     },
17     "originatorId": {
18       "type": "string"
19     }
20   },
21   "required": [
22     "timestamp",
23     "requestId",
24     "subRequestId",
25     "flag",
26     "originatorId"
27   ]
28 }