> ## Documentation Index
> Fetch the complete documentation index at: https://bloodhound.specterops.io/llms.txt
> Use this file to discover all available pages before exploring further.

# SCIM_Role

> A role assigned to users

<img noZoom src="https://mintcdn.com/specterops/tTIczgde9H07oLXf/assets/enterprise-AND-community-edition-pill-tag.svg?fit=max&auto=format&n=tTIczgde9H07oLXf&q=85&s=ad49a576589f4d2a8081df77d07fdf56" alt="Applies to BloodHound Enterprise and CE" width="482" height="45" data-path="assets/enterprise-AND-community-edition-pill-tag.svg" />

Represents a role derived from the `roles` attribute of SCIM users. In SCIM, roles are typically multi-valued string attributes on user resources rather than standalone objects. To enable graph-based analysis, we create `SCIM_Role` nodes to represent each unique role, allowing visibility into which users share the same role assignments across the organization.

## Edges

<Note>
  The tables below list edges defined by the SCIM extension only. Additional edges to or from this node may be created by other extensions.
</Note>

### Inbound Edges

| Edge Type                                                        | Source Node Types                                                        | Traversable |
| ---------------------------------------------------------------- | ------------------------------------------------------------------------ | ----------- |
| [SCIM\_Contains](/opengraph/extensions/scim/edges/scim_contains) | [SCIM\_Organization](/opengraph/extensions/scim/nodes/scim_organization) | ✅           |
| [SCIM\_HasRole](/opengraph/extensions/scim/edges/scim_hasrole)   | [SCIM\_User](/opengraph/extensions/scim/nodes/scim_user)                 | ✅           |

### Outbound Edges

No outbound edges are defined by the SCIM extension for this node.

## Properties

| Property | SCIM Property | Type     | Description                        | Sample Value                                                       |
| -------- | ------------- | -------- | ---------------------------------- | ------------------------------------------------------------------ |
| `id`     | `User.roles`  | `string` | The unique identifier of the role. | `8de4e0ea7370e4e60a521379c9edf3253afcba7660e647f3aa788e49e8993d1a` |
| `name`   | `User.roles`  | `string` | The name of the role.              | `Sales`                                                            |

## Diagram

```mermaid theme={null}
flowchart TD
    SCIM_Organization[fa:fa-building SCIM_Organization]
    SCIM_User[fa:fa-user SCIM_User]
    SCIM_Role[fa:fa-id-badge SCIM_Role]

    SCIM_Organization -->|SCIM_Contains| SCIM_Role
    SCIM_User -->|SCIM_HasRole| SCIM_Role
```
