From aecfc576be061d8ee83142d52a86dc0721984a04 Mon Sep 17 00:00:00 2001 From: Ieva Date: Fri, 16 May 2025 13:09:01 +0300 Subject: [PATCH] RBAC: Mark some role fields as required for schema (#105328) mark some role fields as required for schema --- public/api-enterprise-spec.json | 5 +++++ public/api-merged.json | 5 +++++ public/openapi3.json | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/public/api-enterprise-spec.json b/public/api-enterprise-spec.json index 0814ff5e70f..3ecd78ab421 100644 --- a/public/api-enterprise-spec.json +++ b/public/api-enterprise-spec.json @@ -8546,6 +8546,11 @@ }, "UpdateRoleCommand": { "type": "object", + "required": [ + "displayName", + "description", + "group" + ], "properties": { "description": { "type": "string" diff --git a/public/api-merged.json b/public/api-merged.json index 415f3b65061..dbd63de2861 100644 --- a/public/api-merged.json +++ b/public/api-merged.json @@ -22350,6 +22350,11 @@ }, "UpdateRoleCommand": { "type": "object", + "required": [ + "displayName", + "description", + "group" + ], "properties": { "description": { "type": "string" diff --git a/public/openapi3.json b/public/openapi3.json index c41c4b57bc0..1a7d2f5133e 100644 --- a/public/openapi3.json +++ b/public/openapi3.json @@ -12407,6 +12407,11 @@ "type": "integer" } }, + "required": [ + "displayName", + "description", + "group" + ], "type": "object" }, "UpdateRuleGroupResponse": {