{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "extends": "./schema-definitions.json#",
  "properties": {
    "tcpv4-port": {
      "allOf": [{
        "$ref": "#/definitions/tcpv4port"
      }, {
        "description": "Start allocating ports at this value, going upward",
        "default": 23000
      }]
    },
    "backend-count": {
      "description": "Number of backend cloudooo instances",
      "default": 1,
      "type": "integer"
    },
    "ssl": {
      "description": "Custom ssl certificate, key and optionaly client ca-cert and crl",
      "properties": {
        "cert": {
          "description": "The content of the certificate file",
          "type": "string"
        },
        "key": {
          "description": "The content of the ssl key file",
          "type": "string"
        },
        "ca-cert": {
          "description": "The content of the ca-certificate file",
          "type": "string"
        },
        "crl": {
          "description": "The content of the revocation file",
          "type": "string"
        }
      }
    }
  }
}