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