github.com/kyma-project/kyma-environment-broker@v0.0.1/internal/broker/testdata/update-azure-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": 80,
    13        "minimum": 3,
    14        "type": "integer"
    15      },
    16      "autoScalerMin": {
    17        "description": "Specifies the minimum number of virtual machines to create",
    18        "minimum": 3,
    19        "type": "integer"
    20      },
    21      "machineType": {
    22        "enum": [
    23          "Standard_D4_v3",
    24          "Standard_D8_v3",
    25          "Standard_D16_v3",
    26          "Standard_D32_v3",
    27          "Standard_D48_v3",
    28          "Standard_D64_v3"
    29        ],
    30        "type": "string"
    31      }
    32    },
    33    "required": [],
    34    "type": "object"
    35  }