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

# jamf_Site

> Represents a Jamf Pro site. Sites are organizational containers that segment resources within a Jamf tenant. Accounts and resources can be scoped to specific sites, limiting their access and management boundaries.

<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 Jamf Pro site. Sites are organizational containers that segment resources within a Jamf tenant. Accounts and resources can be scoped to specific sites, limiting their access and management boundaries.

## Created by

`process_site_nodes` in `lib/preprocess.py`

## Edges

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

### Inbound Edges

| Edge Type                                                              | Source Node Types                                                                                                                                                                                          | Traversable |
| ---------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
| [jamf\_AdminToSite](/opengraph/extensions/jamf/edges/jamf_admintosite) | [jamf\_Account](/opengraph/extensions/jamf/nodes/jamf_account), [jamf\_DisabledAccount](/opengraph/extensions/jamf/nodes/jamf_disabledaccount), [jamf\_Group](/opengraph/extensions/jamf/nodes/jamf_group) | ✅           |
| [jamf\_Contains](/opengraph/extensions/jamf/edges/jamf_contains)       | [jamf\_Tenant](/opengraph/extensions/jamf/nodes/jamf_tenant), [jamf\_Site](/opengraph/extensions/jamf/nodes/jamf_site)                                                                                     | ✅           |

### Outbound Edges

| Edge Type                                                        | Destination Node Types                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | Traversable |
| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
| [jamf\_Contains](/opengraph/extensions/jamf/edges/jamf_contains) | [jamf\_Account](/opengraph/extensions/jamf/nodes/jamf_account), [jamf\_DisabledAccount](/opengraph/extensions/jamf/nodes/jamf_disabledaccount), [jamf\_Group](/opengraph/extensions/jamf/nodes/jamf_group), [jamf\_Computer](/opengraph/extensions/jamf/nodes/jamf_computer), [jamf\_ComputerUser](/opengraph/extensions/jamf/nodes/jamf_computeruser), [jamf\_Site](/opengraph/extensions/jamf/nodes/jamf_site), [jamf\_ApiClient](/opengraph/extensions/jamf/nodes/jamf_apiclient), [jamf\_DisabledApiClient](/opengraph/extensions/jamf/nodes/jamf_disabledapiclient), [jamf\_SSOIntegration](/opengraph/extensions/jamf/nodes/jamf_ssointegration) | ✅           |

## Properties

| Property Name | Data Type | Description                    |
| ------------- | --------- | ------------------------------ |
| name          | string    | Name of the site               |
| objectid      | string    | Unique identifier for the Site |
| displayname   | string    | Display name of the site       |
| siteID        | integer   | Jamf site ID                   |
| Tier          | integer   | Security tier classification   |

## Relationship Diagram

```mermaid theme={null}
flowchart TD
    Site[fa:fa-circle-nodes jamf_Site]
    Tenant[fa:fa-cloud jamf_Tenant]
    Account[fa:fa-circle-user jamf_Account]
    DisabledAccount[fa:fa-circle-user jamf_DisabledAccount]
    Group[fa:fa-people-group jamf_Group]
    Computer[fa:fa-display jamf_Computer]
    ComputerUser[fa:fa-circle-user jamf_ComputerUser]

    Site -->|jamf_Contains| Account
    Site -->|jamf_Contains| DisabledAccount
    Site -->|jamf_Contains| Group
    Site -->|jamf_Contains| Computer
    Site -->|jamf_Contains| ComputerUser

    Tenant -->|jamf_Contains| Site
    Account -->|jamf_AdminToSite| Site
    DisabledAccount -->|jamf_AdminToSite| Site
    Group -->|jamf_AdminToSite| Site
    Account -.->|jamf_ScriptsNonTraversable| Site
    DisabledAccount -.->|jamf_ScriptsNonTraversable| Site
    Group -.->|jamf_ScriptsNonTraversable| Site

    style Site fill:#D67500,stroke:#333,stroke-width:3px,color:#000
    style Tenant fill:#00C08D,stroke:#333,stroke-width:1px,color:#000
    style Account fill:#0098BB,stroke:#333,stroke-width:1px,color:#000
    style DisabledAccount fill:#909090,stroke:#333,stroke-width:1px,color:#000
    style Group fill:#F0FC03,stroke:#333,stroke-width:1px,color:#000
    style Computer fill:#D6001C,stroke:#333,stroke-width:1px,color:#fff
    style ComputerUser fill:#FC03A5,stroke:#333,stroke-width:1px,color:#000
```
