import type { SCIMMeta } from './SCIMMeta'; /** * SCIM group serializer for RBAC group management */ export type SCIMGroup = { /** * SCIM schema identifiers */ schemas?: Array; /** * RBAC group unique ID (must match existing RBAC group) */ id: string; /** * RBAC group display name */ displayName: string; /** * RBAC group description */ description?: string; /** * Users to add/remove from the RBAC group */ members?: Array>; /** * Resource metadata */ meta?: SCIMMeta; };