Skip to content

Commit

Permalink
Feat: [ocsf#1122] - extend User, LDAP Person + cloud like AzureAd sup…
Browse files Browse the repository at this point in the history
…port added

- wip - status: LDAP person added + AD profile

initial shape
  • Loading branch information
PavelJurka committed Jun 28, 2024
1 parent f8d9965 commit b6728f5
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
35 changes: 35 additions & 0 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -3036,6 +3036,41 @@
"description": "The primary office location associated with the user. This could be any string and isn't a specific address. For example, <code>South East Virtual</code>.",
"type": "string_t"
},
"on_premises_distinguished_name": {
"caption": "On Premises Distinguished Name",
"description": "The distinguished name of the user in the on-premises Active Directory.",
"type": "string_t"
},
"on_premises_domain_name": {
"caption": "On Premises Domain Name",
"description": "The on-premises domain name of the user.",
"type": "string_t"
},
"on_premises_immutable_id": {
"caption": "On Premises Immutable ID",
"description": "The on-premises immutable identifier for the user.",
"type": "string_t"
},
"on_premises_last_sync_time": {
"caption": "On Premises Last Sync Time",
"description": "The last time at which the object was synced with the on-premises directory.",
"type": "timestamp_t"
},
"on_premises_sam_account_name": {
"caption": "On Premises SAM Account Name",
"description": "The on-premises Security Account Manager (SAM) account name of the user.",
"type": "string_t"
},
"on_premises_sync_enabled": {
"caption": "On Premises Sync Enabled",
"description": "Indicates whether the user account is enabled for synchronization.",
"type": "boolean_t"
},
"on_premises_user_principal_name": {
"caption": "On Premises User Principal Name",
"description": "The on-premises user principal name (UPN) of the user.",
"type": "string_t"
},
"opcode": {
"caption": "DNS Opcode",
"description": "The DNS opcode specifies the type of the query message.",
Expand Down
21 changes: 21 additions & 0 deletions profiles/active_directory.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,27 @@
"is_deleted": {
"requirement": "recommended"
},
"on_premises_distinguished_name": {
"requirement": "optional"
},
"on_premises_domain_name": {
"requirement": "optional"
},
"on_premises_immutable_id": {
"requirement": "optional"
},
"on_premises_last_sync_time": {
"requirement": "optional"
},
"on_premises_sam_account_name": {
"requirement": "optional"
},
"on_premises_sync_enabled": {
"requirement": "optional"
},
"on_premises_user_principal_name": {
"requirement": "optional"
},
"is_recycled": {
"requirement": "optional"
},
Expand Down

0 comments on commit b6728f5

Please sign in to comment.