summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/job.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/job.json')
-rw-r--r--spec/fixtures/api/schemas/job.json24
1 files changed, 0 insertions, 24 deletions
diff --git a/spec/fixtures/api/schemas/job.json b/spec/fixtures/api/schemas/job.json
deleted file mode 100644
index 7b92ab25bc1..00000000000
--- a/spec/fixtures/api/schemas/job.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "type": "object",
- "required": [
- "id",
- "name",
- "started",
- "build_path",
- "playable",
- "created_at",
- "updated_at",
- "status"
- ],
- "properties": {
- "id": { "type": "integer" },
- "name": { "type": "string" },
- "started": { "type": "boolean" } ,
- "build_path": { "type": "string" },
- "playable": { "type": "boolean" },
- "created_at": { "type": "string" },
- "updated_at": { "type": "string" },
- "status": { "$ref": "ci_detailed_status.json" }
- },
- "additionalProperties": false
-}