debian-mirror-gitlab/spec/fixtures/api/schemas/rollout_status.json
2021-03-08 18:12:59 +05:30

53 lines
1.3 KiB
JSON

{
"type": "object",
"additionalProperties": false,
"required": [
"status"
],
"properties": {
"status": {
"type": "string"
},
"completion": {
"type": "integer"
},
"is_completed": {
"type": "boolean"
},
"has_legacy_app_label": {
"type": "boolean"
},
"instances": {
"type": "array",
"items": {
"additionalProperties": false,
"type": "object",
"required": [
"status",
"pod_name",
"tooltip",
"track",
"stable"
],
"properties": {
"status": {
"type": "string"
},
"pod_name": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"track": {
"type": "string"
},
"stable": {
"type": "boolean"
}
}
}
}
}
}