mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 12:27:48 +00:00
102 lines
2.8 KiB
YAML
102 lines
2.8 KiB
YAML
title: Account Correlated
|
|
type: object
|
|
required:
|
|
- identity
|
|
- source
|
|
- account
|
|
- attributes
|
|
properties:
|
|
identity:
|
|
required:
|
|
- type
|
|
- name
|
|
- id
|
|
type: object
|
|
description: Identity the account is correlated with.
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: DTO type of the identity the account is correlated with.
|
|
enum:
|
|
- IDENTITY
|
|
example: IDENTITY
|
|
id:
|
|
type: string
|
|
description: ID of the identity the account is correlated with.
|
|
example: 2c7180a46faadee4016fb4e018c20642
|
|
name:
|
|
type: string
|
|
description: Display name of the identity the account is correlated with.
|
|
example: Michael Michaels
|
|
source:
|
|
required:
|
|
- id
|
|
- type
|
|
- name
|
|
type: object
|
|
description: The source the accounts are being correlated from.
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: The DTO type of the source the accounts are being correlated from.
|
|
enum:
|
|
- SOURCE
|
|
example: SOURCE
|
|
id:
|
|
type: string
|
|
description: The ID of the source the accounts are being correlated from.
|
|
example: 2c9180835d191a86015d28455b4b232a
|
|
name:
|
|
type: string
|
|
description: Display name of the source the accounts are being correlated from.
|
|
example: HR Active Directory
|
|
account:
|
|
type: object
|
|
description: The correlated account.
|
|
required:
|
|
- id
|
|
- name
|
|
- nativeIdentity
|
|
- type
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: The correlated account's DTO type.
|
|
enum:
|
|
- ACCOUNT
|
|
example: ACCOUNT
|
|
id:
|
|
type: string
|
|
description: The correlated account's ID.
|
|
example: 98da47c31df444558c211f9b205184f6
|
|
name:
|
|
type: string
|
|
description: The correlated account's display name.
|
|
example: Brian Mendoza
|
|
nativeIdentity:
|
|
type: string
|
|
description: Unique ID of the account on the source.
|
|
example: "cn=john.doe,ou=users,dc=acme,dc=com"
|
|
uuid:
|
|
nullable: true
|
|
type: string
|
|
description: The source's unique identifier for the account. UUID is generated by the source system.
|
|
example: 1cb1f07d-3e5a-4431-becd-234fa4306108
|
|
attributes:
|
|
type: object
|
|
description: The attributes associated with the account. Attributes are unique per source.
|
|
additionalProperties: true
|
|
example: {
|
|
"sn": "doe",
|
|
"givenName": "john",
|
|
"memberOf": [
|
|
"cn=g1,ou=groups,dc=acme,dc=com",
|
|
"cn=g2,ou=groups,dc=acme,dc=com",
|
|
"cn=g3,ou=groups,dc=acme,dc=com"
|
|
]
|
|
}
|
|
entitlementCount:
|
|
type: integer
|
|
format: int32
|
|
description: The number of entitlements associated with this account.
|
|
example: 0 |