instance-cloudooo-schema.json 508 Bytes
Newer Older
1 2 3 4 5 6 7 8
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "required": ["tcpv4-port"],
  "properties": {
    "tcpv4-port": {
      "allOf": [{
        "$ref": "#/definitions/tcpv4port"
      }, {
9
        "description": "Start allocating ports at this value, going upward"
10
      }]
11 12 13 14 15 16 17 18
    },
    "monitor-password": {
      "description": "Password to access the monitor",
      "type": "string"
    },
    "monitor-user": {
      "description": "User to access the monitor",
      "type": "string"
19 20 21
    }
  }
}