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

> Represents a user assigned to a jamf-managed computer. Computer users are derived from the location/user assignment on the computer record.

<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 user assigned to a Jamf-managed computer. Computer users are derived from the location/user assignment on the computer record and serve as identity pivot nodes for linking physical device access to Jamf account permissions.

## Created by

`process_assigned_user_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\_AssignedUser](/opengraph/extensions/jamf/edges/jamf_assigneduser) | [jamf\_Computer](/opengraph/extensions/jamf/nodes/jamf_computer)                                                       | ✅           |
| [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\_AZMatchedEmail](/opengraph/extensions/jamf/edges/jamf_azmatchedemail) | [AZUser](/resources/nodes/az-user)                                                                                                             | ❌           |
| [jamf\_MatchedEmail](/opengraph/extensions/jamf/edges/jamf_matchedemail)     | [jamf\_Account](/opengraph/extensions/jamf/nodes/jamf_account), [jamf\_DisabledAccount](/opengraph/extensions/jamf/nodes/jamf_disabledaccount) | ✅           |
| [jamf\_MatchedName](/opengraph/extensions/jamf/edges/jamf_matchedname)       | [jamf\_Account](/opengraph/extensions/jamf/nodes/jamf_account), [jamf\_DisabledAccount](/opengraph/extensions/jamf/nodes/jamf_disabledaccount) | ✅           |

## Properties

| Property Name | Data Type | Description                                 |
| ------------- | --------- | ------------------------------------------- |
| displayname   | string    | Display name of the user                    |
| name          | string    | Username or email of the user               |
| email         | string    | Email address of the user                   |
| objectid      | string    | Unique identifier for the Computer User     |
| computer      | string    | ID of the computer this user is assigned to |
| Tier          | integer   | Security tier classification                |

## Relationship Diagram

```mermaid theme={null}
flowchart TD
    ComputerUser[fa:fa-circle-user jamf_ComputerUser]
    Account[fa:fa-circle-user jamf_Account]
    DisabledAccount[fa:fa-circle-user jamf_DisabledAccount]
    Computer[fa:fa-display jamf_Computer]

    ComputerUser -->|jamf_MatchedEmail| Account
    ComputerUser -->|jamf_MatchedEmail| DisabledAccount
    ComputerUser -->|jamf_MatchedName| Account
    ComputerUser -->|jamf_MatchedName| DisabledAccount

    Computer -->|jamf_AssignedUser| ComputerUser

    style ComputerUser fill:#FC03A5,stroke:#333,stroke-width:3px,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 Computer fill:#D6001C,stroke:#333,stroke-width:1px,color:#fff
```
