Commit 798aae91 authored by Tiger's avatar Tiger Committed by Jose Vargas
parent d66a8c5c
......@@ -21,7 +21,7 @@
"rollout_status": {
"oneOf": [
{ "type": "null" },
{ "$ref": "../../../../../../spec/fixtures/api/schemas/rollout_status.json" }
{ "$ref": "../rollout_status.json" }
]
},
"logs_path": { "type": "string" },
......
......@@ -44,7 +44,7 @@
"type": "boolean"
},
"rollout_status": {
"$ref": "../../../../../spec/fixtures/api/schemas/rollout_status.json"
"$ref": "rollout_status.json"
},
"environment_path": {
"type": "string"
......
{
"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"
}
}
}
}
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment