configuration.json 702 Bytes
Newer Older
Rafael Monnerat's avatar
Rafael Monnerat committed
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 29
{
  "name":"Parameter",
  "title": "Default parameter schema for ERP5 Software Release.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "flavour" : {
        "type" : "string",
        "title" : "Sofware Release Flavour",
        "optional": true,
        "default" : "default",
        "enum" : ["default", "configurator"]
      },

    "bt5_list": {
       "type":"array",
       "title" : "Business Template List",
       "items" : {"type": "string"},
       "optional" : true
      },

    "bt5_repository_list": {
       "type" : "array",
       "title" : "Business Template Repository List",
       "items" : {"type": "string"},
       "optional" : true
     }
  }
}