# The AccountUser object

## Attributes

- `active` (boolean)
  If this user is active
- `displayName` (string)
  String that represents a concatenation of given and family names. For example `John Smith`.
- `emails` (array of object)
  All the emails associated with the Databricks user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored.
  - `display` (string)
  - `primary` (boolean)
  - `$ref` (string)
  - `type` (string)
  - `value` (string)
- `externalId` (string)
  External ID is not currently supported. It is reserved for future use.
  Constraints: `<= 64 characters`
- `id` (string, int64)
  Databricks user ID.
- `name` (object)
  - `familyName` (string)
    Family name of the Databricks user.
  - `givenName` (string)
    Given name of the Databricks user.
- `roles` (array of object)
  Indicates if the group has the admin role.
  - `display` (string)
  - `primary` (boolean)
  - `$ref` (string)
  - `type` (string)
  - `value` (string)
- `userName` (string, email)
  Email address of the Databricks user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored.
- `account_id` (string, uuid)
  Databricks account ID

## Example

```json
{
  "active": true,
  "displayName": "string",
  "emails": [
    {
      "display": "string",
      "primary": true,
      "$ref": "string",
      "type": "string",
      "value": "string"
    }
  ],
  "externalId": "string",
  "id": "string",
  "name": {
    "familyName": "string",
    "givenName": "string"
  },
  "roles": [
    {
      "display": "string",
      "primary": true,
      "$ref": "string",
      "type": "string",
      "value": "string"
    }
  ],
  "userName": "string",
  "account_id": "string"
}
```


