summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/status/action.json
blob: 99a576e6c5b569541f5777bc8fb72557e66c1775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "required": [
    "icon",
    "title",
    "path",
    "method"
  ],
  "properties": {
    "icon": {
      "type": "string",
      "enum": [
        "retry",
        "play",
        "cancel"
      ]
    },
    "title": { "type": "string" },
    "path": { "type": "string" },
    "method": { "$ref": "../http_method.json" }
  }
}