addedInput schema / properties / requestBody / properties / approvalPermissionType
Added value: +{
+ "anyOf": [
+ {
+ "enum": [
+ "cannotApprove",
+ "canApproveOthers",
+ "canBypassApproval",
+ "custom"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Represents the permission group level change request approval permission."
+}
addedInput schema / properties / requestBody / properties / environmentApprovalPermissions
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "environmentApprovalPermissionType": {
+ "description": "Represents the environment specific change request approval permission.",
+ "enum": [
+ "cannotApprove",
+ "canApproveOthers",
+ "canBypassApproval"
+ ],
+ "type": "string"
+ },
+ "environmentId": {
+ "description": "Identifier of the Environment.",
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "required": [
+ "environmentId",
+ "environmentApprovalPermissionType"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "List of environment specific change request approval permissions."
+}
addedInput schema / properties / requestBody / properties / newEnvironmentApprovalPermissionType
Added value: +{
+ "anyOf": [
+ {
+ "enum": [
+ "cannotApprove",
+ "canApproveOthers",
+ "canBypassApproval"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Represents the environment specific change request approval permission."
+}
removedInput schema / properties / requestBody / required
Removed value: -[
- "name",
- "canManageMembers",
- "canCreateOrUpdateConfig",
- "canDeleteConfig",
- "canCreateOrUpdateEnvironment",
- "canDeleteEnvironment",
- "canCreateOrUpdateSetting",
- "canTagSetting",
- "canDeleteSetting",
- "canCreateOrUpdateTag",
- "canDeleteTag",
- "canManageWebhook",
- "canUseExportImport",
- "canManageProductPreferences",
- "canManageIntegrations",
- "canViewSdkKey",
- "canRotateSdkKey",
- "canCreateOrUpdateSegments",
- "canDeleteSegments",
- "canViewProductAuditLog",
- "canViewProductStatistics",
- "canDisable2FA",
- "accessType",
- "newEnvironmentAccessType",
- "environmentAccesses"
-]