Skip to content

Commit

Permalink
[Account] Add Manager details (#1608)
Browse files Browse the repository at this point in the history
* [Account] Add Manager details

* Add to yml

* Add RiskLevel

* Update context-standards-recommended.md
  • Loading branch information
mmhw authored Oct 8, 2024
1 parent 037780f commit 812f5df
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/integrations/context-standards-recommended.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@ The following is the format for an Account entity.
}
],
"ChangePasswordAtNextLogin": "BOOL, Whether this account should change its password at the next login",
"IsInternal": "BOOL, Whether this account is internal or external to the organization"
"IsInternal": "BOOL, Whether this account is internal or external to the organization",
"Manager": {
"Email": "STRING, The email address of the manager.",
"DisplayName": "STRING, The display name of the manager."
},
"RiskLevel": "STRING, The risk level associated with the account. This could be 'LOW', 'MED' or 'HIGH'.",
}
```

Expand Down Expand Up @@ -132,6 +137,15 @@ outputs:
- contextPath: Account.IsInternal
description: Whether the account is internal or external to the organization. 'True' means the account is internal.
type: Bool
- contextPath: Account.Manager.Email
description: The email address of the manager.
type: String
- contextPath: Account.Manager.DisplayName
description: The display name of the manager.
type: String
- contextPath: Account.RiskLevel
description: The risk level associated with the account. This could be 'LOW', 'MEDIUM', or 'HIGH'.
type: String


```
Expand Down

0 comments on commit 812f5df

Please sign in to comment.