# The AccountGroup object

## Attributes

- `displayName` (string)
  String that represents a human-readable group name
- `externalId` (string)
  external_id should be unique for identifying groups
  Constraints: `<= 64 characters`
- `id` (string, int64)
  Databricks group ID
- `members` (array of object)
  - `display` (string)
  - `primary` (boolean)
  - `$ref` (string)
  - `type` (string)
  - `value` (string)
- `roles` (array of object)
  Indicates if the group has the admin role.
  - `display` (string)
  - `primary` (boolean)
  - `$ref` (string)
  - `type` (string)
  - `value` (string)
- `account_id` (string, uuid)
  Databricks account ID

## Example

```json
{
  "displayName": "string",
  "externalId": "string",
  "id": "string",
  "members": [
    {
      "display": "string",
      "primary": true,
      "$ref": "string",
      "type": "string",
      "value": "string"
    }
  ],
  "roles": [
    {
      "display": "string",
      "primary": true,
      "$ref": "string",
      "type": "string",
      "value": "string"
    }
  ],
  "account_id": "string"
}
```


