github.com/kyma-project/kyma-environment-broker@v0.0.1/internal/broker/testdata/update-azure-lite-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 "_enumDisplayName": { 23 "Standard_D4_v3": "Standard_D4_v3 (4vCPU, 16GB RAM)" 24 }, 25 "enum": [ 26 "Standard_D4_v3" 27 ], 28 "type": "string" 29 } 30 }, 31 "required": [], 32 "type": "object" 33 }