# The Group object

## Attributes

- `displayName` (string, Public Preview)
  String that represents a human-readable group name
- `entitlements` (array of object, Public Preview)
  Entitlements assigned to the group. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values.
  - `display` (string, Public Preview)
  - `primary` (boolean, Public Preview)
  - `$ref` (string, Public Preview)
  - `type` (string, Public Preview)
  - `value` (string, Public Preview)
- `externalId` (string, Public Preview)
  external_id should be unique for identifying groups
  Constraints: `<= 64 characters`
- `groups` (array of object, Public Preview)
  - `display` (string, Public Preview)
  - `primary` (boolean, Public Preview)
  - `$ref` (string, Public Preview)
  - `type` (string, Public Preview)
  - `value` (string, Public Preview)
- `id` (string, int64, Public Preview)
  Databricks group ID
- `members` (array of object, Public Preview)
  - `display` (string, Public Preview)
  - `primary` (boolean, Public Preview)
  - `$ref` (string, Public Preview)
  - `type` (string, Public Preview)
  - `value` (string, Public Preview)
- `roles` (array of object, Public Preview)
  Corresponds to AWS instance profile/arn role.
  - `display` (string, Public Preview)
  - `primary` (boolean, Public Preview)
  - `$ref` (string, Public Preview)
  - `type` (string, Public Preview)
  - `value` (string, Public Preview)
- `schemas` (array of string, Public Preview)
  The schema of the group.
  Possible values:
  - `GROUP_SCHEMA_UNSPECIFIED`
  - `urn:ietf:params:scim:schemas:core:2.0:Group`

## Example

```json
{
  "displayName": "string",
  "entitlements": [
    {
      "display": "string",
      "primary": true,
      "$ref": "string",
      "type": "string",
      "value": "string"
    }
  ],
  "externalId": "string",
  "groups": [
    {
      "display": "string",
      "primary": true,
      "$ref": "string",
      "type": "string",
      "value": "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"
    }
  ],
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:Group"
  ]
}
```


