instance-build-rina-input-schema.json 690 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "Parameters to build/publish RINA packages and test hellorina SR.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "publish": {
      "description": "Upload built packages automatically to a Debian repository when successful.",
      "type": "object",
      "required": ["suite", "host", "key"],
      "properties": {
        "suite": {
          "type": "string"
        },
        "host": {
          "type": "string"
        },
        "port": {
          "type": "integer",
          "default": 22
        },
        "key": {
          "type": "string"
        }
      }
    }
  }
}