debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/environment.json
2022-08-13 15:12:31 +05:30

31 lines
743 B
JSON

{
"type": "object",
"required": [
"id",
"name",
"slug",
"tier",
"external_url",
"state",
"created_at",
"updated_at"
],
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" },
"slug": { "type": "string" },
"tier": { "type": "string" },
"external_url": { "$ref": "../../types/nullable_string.json" },
"last_deployment": {
"oneOf": [
{ "type": "null" },
{ "$ref": "deployment.json" }
]
},
"state": { "type": "string" },
"created_at": { "type": "string", "format": "date-time" },
"updated_at": { "type": "string", "format": "date-time" },
"project": { "$ref": "project.json" }
},
"additionalProperties": false
}