gitlab-org--gitlab-foss/spec/fixtures/api/schemas/job/deployment_status.json
Filipa Lacerda 295b0466b3
Removes icon key from job endpoint
This was added because we thought we'd need
to render the environment status but we
already have this information in the
build status
2018-10-04 10:22:31 +02:00

25 lines
433 B
JSON

{
"type": "object",
"required": [
"status",
"environment"
],
"properties": {
"status": {
"oneOf": [
{
"type": "string",
"enum": [
"last",
"creating",
"failed",
"out_of_date"
]
},
{ "type": "null" }
]
},
"environment": { "$ref": "../environment.json" }
},
"additionalProperties": false
}