> ## Documentation Index
> Fetch the complete documentation index at: https://specterops-bed-7559-api-key-exp.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# SCIM_MemberOf

> User or group is a member of a group

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

## Edge Schema

* Source: [SCIM\_User](/opengraph/extensions/scim/nodes/scim_user), [SCIM\_Group](/opengraph/extensions/scim/nodes/scim_group)
* Destination: [SCIM\_Group](/opengraph/extensions/scim/nodes/scim_group)
* Traversable: ✅

## General Information

The SCIM\_MemberOf edge represents group membership relationships, as defined by the `members` attribute of groups and the `groups` attribute of users in the SCIM schema. Users can be members of groups, and groups can be nested within other groups. Group membership propagated through SCIM is a primary mechanism for granting application access, making these edges critical for understanding transitive access paths.

```mermaid theme={null}
graph LR
    node1("SCIM_User dschrute")
    node2("SCIM_Group Sales Team")
    node3("SCIM_Group All Employees")
    node1 -- SCIM_MemberOf --> node2
    node2 -- SCIM_MemberOf --> node3
```
