github.com/kyma-project/kyma-environment-broker@v0.0.1/internal/broker/testdata/update-azure-lite-schema-additional-params.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "_controlsOrder": [ 4 "machineType", 5 "autoScalerMin", 6 "autoScalerMax", 7 "oidc", 8 "administrators" 9 ], 10 "_show_form_view": true, 11 "properties": { 12 "administrators": { 13 "description": "Specifies the list of runtime administrators", 14 "items": { 15 "type": "string" 16 }, 17 "title": "Administrators", 18 "type": "array" 19 }, 20 "autoScalerMax": { 21 "description": "Specifies the maximum number of virtual machines to create", 22 "maximum": 40, 23 "minimum": 2, 24 "type": "integer" 25 }, 26 "autoScalerMin": { 27 "description": "Specifies the minimum number of virtual machines to create", 28 "minimum": 2, 29 "type": "integer" 30 }, 31 "machineType": { 32 "_enumDisplayName": { 33 "Standard_D4_v3": "Standard_D4_v3 (4vCPU, 16GB RAM)" 34 }, 35 "enum": [ 36 "Standard_D4_v3" 37 ], 38 "type": "string" 39 }, 40 "oidc": { 41 "description": "OIDC configuration", 42 "properties": { 43 "clientID": { 44 "description": "The client ID for the OpenID Connect client.", 45 "type": "string" 46 }, 47 "groupsClaim": { 48 "description": "If provided, the name of a custom OpenID Connect claim for specifying user groups.", 49 "type": "string" 50 }, 51 "issuerURL": { 52 "description": "The URL of the OpenID issuer, only HTTPS scheme will be accepted.", 53 "type": "string" 54 }, 55 "signingAlgs": { 56 "description": "Comma separated list of allowed JOSE asymmetric signing algorithms, for example, RS256, ES256", 57 "items": { 58 "type": "string" 59 }, 60 "type": "array" 61 }, 62 "usernameClaim": { 63 "description": "The OpenID claim to use as the user name.", 64 "type": "string" 65 }, 66 "usernamePrefix": { 67 "description": "If provided, all usernames will be prefixed with this value. If not provided, username claims other than 'email' are prefixed by the issuer URL to avoid clashes. To skip any prefixing, provide the value '-' (dash character without additional characters).", 68 "type": "string" 69 } 70 }, 71 "required": [ 72 "clientID", 73 "issuerURL" 74 ], 75 "type": "object" 76 } 77 }, 78 "required": [], 79 "type": "object" 80 }