summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/job/trigger.json
blob: 1c7e9cc7693da911ca5b260cad3d95ef89eff7de (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
25
26
27
28
{
  "type": "object",
  "required": [
    "short_token",
    "variables"
  ],
  "properties": {
    "short_token": { "type": "string" },
    "variables": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "key",
          "value",
          "public"
        ],
        "properties": {
          "key": { "type": "string" },
          "value": { "type": "string" },
          "public": { "type": "boolean" }
        },
        "additionalProperties": false
      }
    }
  },
  "additionalProperties": false
}