{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserGroup", "title": "UserGroup", "type": "object", "description": "An IAM user group that organizes users and assigns roles and service group access.", "properties": { "id": { "type": "string", "description": "The alphanumeric string identifying the user group." }, "name": { "type": "string", "description": "The name of the user group." }, "description": { "type": "string", "description": "A description of the user group." }, "users_count": { "type": "integer", "description": "The number of users in the group." }, "roles_count": { "type": "integer", "description": "The number of roles assigned to the group." }, "service_groups_count": { "type": "integer", "description": "The number of service groups associated with the user group." }, "created_at": { "type": "string", "format": "date-time", "description": "The date and time the user group was created." }, "updated_at": { "type": "string", "format": "date-time", "description": "The date and time the user group was last updated." } } }