github.com/kyma-project/kyma-environment-broker@v0.0.1/internal/broker/testdata/update-openstack-schema.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "_controlsOrder": [
     4      "machineType",
     5      "autoScalerMin",
     6      "autoScalerMax"
     7    ],
     8    "_show_form_view": true,
     9    "properties": {
    10      "autoScalerMax": {
    11        "description": "Specifies the maximum number of virtual machines to create",
    12        "maximum": 40,
    13        "minimum": 2,
    14        "type": "integer"
    15      },
    16      "autoScalerMin": {
    17        "description": "Specifies the minimum number of virtual machines to create",
    18        "minimum": 2,
    19        "type": "integer"
    20      },
    21      "machineType": {
    22        "enum": [
    23          "g_c4_m16",
    24          "g_c8_m32"
    25        ],
    26        "type": "string"
    27      }
    28    },
    29    "required": [],
    30    "type": "object"
    31  }