# The AccountServicePrincipal object

## Attributes

- `active` (boolean)
  If this user is active
- `applicationId` (string, uuid)
  UUID relating to the service principal
- `displayName` (string)
  String that represents a concatenation of given and family names.
  Example: `etl-service`
- `externalId` (string)
  Constraints: `<= 64 characters`
- `id` (string, int64)
  Databricks service principal ID.
- `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
{
  "active": true,
  "applicationId": "string",
  "displayName": "etl-service",
  "externalId": "string",
  "id": "string",
  "roles": [
    {
      "display": "string",
      "primary": true,
      "$ref": "string",
      "type": "string",
      "value": "string"
    }
  ],
  "account_id": "string"
}
```


