aboutsummaryrefslogtreecommitdiffstats
path: root/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/data_types.json
blob: 25efb3656384d741768e8df7e027b64c30f2253c (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
27
28
29
{
  "data_types": {
    "dt-system-packages": {
      "description": "This represent System Package Data Type",
      "version": "1.0.0",
      "properties": {
        "type": {
          "required": true,
          "type": "string",
          "constraints": [
            {
              "valid_values": [
                "ansible_galaxy", "pip"
              ]
            }
          ]
        },
        "package": {
          "required": true,
          "type": "list",
          "entry_schema" : {
            "type" : "string"
          }
        }
      },
      "derived_from": "tosca.datatypes.Root"
    }
  }
}