BetterCloud · Schema

Group

A group from an integrated directory service.

AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

Properties

Name Type Description
id string Unique identifier for the group.
name string Display name of the group.
email string Email address of the group.
description string Description of the group.
member_count integer Number of members in the group.
created_at string When the group was created.
updated_at string When the group was last updated.
View JSON Schema on GitHub

JSON Schema

bettercloud-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-schema/bettercloud-group-schema.json",
  "title": "Group",
  "description": "A group from an integrated directory service.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the group.",
      "example": "group-x1y2z3"
    },
    "name": {
      "type": "string",
      "description": "Display name of the group.",
      "example": "Engineering Team"
    },
    "email": {
      "type": "string",
      "format": "email",
      "nullable": true,
      "description": "Email address of the group.",
      "example": "[email protected]"
    },
    "description": {
      "type": "string",
      "nullable": true,
      "description": "Description of the group.",
      "example": "Engineering department group"
    },
    "member_count": {
      "type": "integer",
      "description": "Number of members in the group.",
      "example": 45
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the group was created.",
      "example": "2024-06-01T00:00:00Z"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "When the group was last updated.",
      "example": "2026-03-01T00:00:00Z"
    }
  }
}