debian-mirror-gitlab/spec/fixtures/api/schemas/deployment_cluster.json

23 lines
366 B
JSON
Raw Normal View History

2019-12-04 20:38:33 +05:30
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": { "type": "string" },
"path": {
"oneOf": [
{ "type": "null" },
{ "type": "string" }
]
2020-03-13 15:44:24 +05:30
},
"kubernetes_namespace": {
"oneOf": [
{ "type": "null" },
{ "type": "string" }
]
2019-12-04 20:38:33 +05:30
}
},
"additionalProperties": false
}