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