# The User object

The details of a User resource.

## Attributes

- `account_id` (string, Beta)
  The accountId parent of the user in <Databricks>.
- `user_id` (string, Beta)
  Internal userId of the user in <Databricks>.
- `external_id` (string, Beta)
  ExternalId of the user in the customer's IdP.
- `username` (string, Beta)
  Username/email of the user.
- `full_name` (object, Beta)
  - `given_name` (string, Beta)
  - `family_name` (string, Beta)
- `account_user_status` (string, Beta)
  The activity status of a user in a <Databricks> account.
  Possible values: `STATE_UNSPECIFIED`, `ACTIVE`, `INACTIVE`

## Example

```json
{
  "account_id": "string",
  "user_id": "string",
  "external_id": "string",
  "username": "string",
  "full_name": {
    "given_name": "string",
    "family_name": "string"
  },
  "account_user_status": "string"
}
```


