summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/deployment_cluster.json
blob: 86497f98dcb533430e9cf9acf3b5a5cebb6e6760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": { "type": "string" },
    "path": {
      "oneOf": [
        { "type": "null" },
        { "type": "string" }
      ]
    },
    "kubernetes_namespace": {
      "oneOf": [
        { "type": "null" },
        { "type": "string" }
      ]
    }
  },
  "additionalProperties": false
}