summaryrefslogtreecommitdiffstats
path: root/components/model-catalog/definition-type/starter-type/data_type/dt-system-packages.json
blob: 81bb030b4b362a48ee0c5ffb2782a38c4e07b8ba (plain)
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
{
  "description": "This represent System Package Data Type",
  "version": "1.0.0",
  "properties": {
    "type": {
      "required": true,
      "type": "string",
      "constraints": [
        {
          "valid_values": [
            "ANSIBLE",
            "PYTHON"
          ]
        }
      ]
    },
    "package": {
      "required": true,
      "type": "list",
      "entry_schema": {
        "type": "string"
      }
    }
  },
  "derived_from": "tosca.datatypes.Root"
}