diff options
author | Douwe Maan <douwe@gitlab.com> | 2017-05-02 16:56:49 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2017-05-02 16:56:49 +0000 |
commit | d048d9268cd12fd78a1d07fb46b5c94a2cc16961 (patch) | |
tree | ae1404def0d7e9a29e96492b6fb89ab04fa14394 /spec/fixtures | |
parent | 9fce7c8e02b5486e4931432cad8b07830fa65278 (diff) | |
parent | 7f22256a63b2c4e6fb1a85beb2ad5420b085247e (diff) | |
download | gitlab-ce-d048d9268cd12fd78a1d07fb46b5c94a2cc16961.tar.gz |
Merge branch 'metrics-deployment-history' into 'master'
Metrics deployment history
Closes #26914
See merge request !10649
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/deployments.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/deployments.json b/spec/fixtures/api/schemas/deployments.json new file mode 100644 index 00000000000..1112f23aab2 --- /dev/null +++ b/spec/fixtures/api/schemas/deployments.json @@ -0,0 +1,58 @@ +{ + "additionalProperties": false, + "properties": { + "deployments": { + "items": { + "additionalProperties": false, + "properties": { + "created_at": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "iid": { + "type": "integer" + }, + "last?": { + "type": "boolean" + }, + "ref": { + "additionalProperties": false, + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "sha": { + "type": "string" + }, + "tag": { + "type": "boolean" + } + }, + "required": [ + "sha", + "created_at", + "iid", + "tag", + "last?", + "ref", + "id" + ], + "type": "object" + }, + "minItems": 1, + "type": "array" + } + }, + "required": [ + "deployments" + ], + "type": "object" +} |