> ## 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_Group

> A group provisioned via SCIM

<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 group resource provisioned via the [System for Cross-domain Identity Management (SCIM)](https://scim.cloud/) protocol. SCIM groups are used by identity providers to organize users and manage access to downstream applications. Group membership changes propagated through SCIM can grant or revoke application access, making groups a key control point for identity governance.

## 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\_MemberOf](/opengraph/extensions/scim/edges/scim_memberof) | [SCIM\_User](/opengraph/extensions/scim/nodes/scim_user), [SCIM\_Group](/opengraph/extensions/scim/nodes/scim_group) | ✅           |

### Outbound Edges

| Edge Type                                                              | Destination Node Types                                                                                                                                     | Traversable |
| ---------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
| [SCIM\_MemberOf](/opengraph/extensions/scim/edges/scim_memberof)       | [SCIM\_Group](/opengraph/extensions/scim/nodes/scim_group)                                                                                                 | ✅           |
| [SCIM\_Provisioned](/opengraph/extensions/scim/edges/scim_provisioned) | [GH\_ExternalIdentity](/opengraph/extensions/github/nodes/gh_externalidentity), [GH\_EnterpriseTeam](/opengraph/extensions/github/nodes/gh_enterpriseteam) | ✅           |

## Properties

| Property       | SCIM Property       | Type       | Description                                    | Sample Value                           |
| -------------- | ------------------- | ---------- | ---------------------------------------------- | -------------------------------------- |
| `id`           | `id`                | `string`   | The unique identifier of the group.            | `2819c223-7f76-453a-919d-413861904646` |
| `displayName`  | `displayName`       | `string`   | The display name of the group.                 | `Sales Team`                           |
| `created`      | `meta.created`      | `datetime` | The date and time the group was created.       | `2010-01-23T04:56:22Z`                 |
| `lastModified` | `meta.lastModified` | `datetime` | The date and time the group was last modified. | `2011-05-13T04:42:34Z`                 |

## Diagram

```mermaid theme={null}
flowchart TD
    SCIM_Organization[fa:fa-building SCIM_Organization]
    SCIM_User[fa:fa-user SCIM_User]
    SCIM_Group[fa:fa-users SCIM_Group]

    SCIM_Organization -->|SCIM_Contains| SCIM_Group
    SCIM_User -->|SCIM_MemberOf| SCIM_Group
    SCIM_Group -->|SCIM_MemberOf| SCIM_Group
```
