summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/job/runner.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/job/runner.json')
-rw-r--r--spec/fixtures/api/schemas/job/runner.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/job/runner.json b/spec/fixtures/api/schemas/job/runner.json
new file mode 100644
index 00000000000..acfeeeeb808
--- /dev/null
+++ b/spec/fixtures/api/schemas/job/runner.json
@@ -0,0 +1,17 @@
+{
+ "oneOf": [
+ { "type": "null" },
+ {
+ "type": "object",
+ "required": [
+ "id",
+ "description"
+ ],
+ "properties": {
+ "id": { "type": "integer" },
+ "description": { "type": "string" },
+ "edit_path": { "type": "string" }
+ }
+ }
+ ]
+}