summaryrefslogtreecommitdiffstats
path: root/examples/examples-grpc/src/main/resources/schemas/CDSActionIdentifiersType.json
blob: a02d51f56ff22c4a053d78917243604e71fec338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "actionName": {
      "type": "string"
    },
    "blueprintName": {
      "type": "string"
    },
    "blueprintVersion": {
      "type": "string"
    },
    "mode": {
      "type": "string"
    }
  },
  "required": [
    "actionName",
    "blueprintName",
    "blueprintVersion",
    "mode"
  ]
}