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

> An organization or tenant in the IdP

<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 synchronized organization or tenant in the identity provider (IdP). An application may synchronize users and groups from multiple organizations or tenants via SCIM. The `SCIM_Organization` node serves as the root container for all SCIM resources belonging to a given tenant, providing a clear boundary for identity governance and access control.

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

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

### Outbound Edges

| Edge Type                                                        | Destination Node Types                                                                                                                                                         | Traversable |
| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
| [SCIM\_Contains](/opengraph/extensions/scim/edges/scim_contains) | [SCIM\_User](/opengraph/extensions/scim/nodes/scim_user), [SCIM\_Group](/opengraph/extensions/scim/nodes/scim_group), [SCIM\_Role](/opengraph/extensions/scim/nodes/scim_role) | ✅           |

## Properties

| Property      | Type           | Description                                          | Sample Value               |
| ------------- | -------------- | ---------------------------------------------------- | -------------------------- |
| `id`          | `string`       | The unique identifier of the organization or tenant. | `contoso.com`              |
| `displayName` | `string`       | The display name of the organization or tenant.      | `Contoso`                  |
| `url`         | `string (uri)` | The URL of the organization or tenant in the IdP.    | `https://contoso.com/scim` |

## 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_Role[fa:fa-id-badge SCIM_Role]

    SCIM_Organization -->|SCIM_Contains| SCIM_User
    SCIM_Organization -->|SCIM_Contains| SCIM_Group
    SCIM_Organization -->|SCIM_Contains| SCIM_Role
```
