gitlab-org--gitlab-foss/spec/fixtures/api/schemas/deployment.json
Rémy Coutable 7f4b14b104
Port spec/fixtures/api/schemas/deployment.json from EE
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-02-13 14:59:30 +01:00

45 lines
865 B
JSON

{
"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"
}