summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/status/action.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/status/action.json')
-rw-r--r--spec/fixtures/api/schemas/status/action.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/status/action.json b/spec/fixtures/api/schemas/status/action.json
new file mode 100644
index 00000000000..99a576e6c5b
--- /dev/null
+++ b/spec/fixtures/api/schemas/status/action.json
@@ -0,0 +1,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" }
+ }
+}