mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 04:19:19 +00:00
87 lines
2.4 KiB
YAML
87 lines
2.4 KiB
YAML
title: Account Uncorrelated
|
|
type: object
|
|
required:
|
|
- identity
|
|
- source
|
|
- account
|
|
properties:
|
|
identity:
|
|
required:
|
|
- type
|
|
- name
|
|
- id
|
|
type: object
|
|
description: Identity the account is uncorrelated with.
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: DTO type of the identity the account is uncorrelated with.
|
|
enum:
|
|
- IDENTITY
|
|
example: IDENTITY
|
|
id:
|
|
type: string
|
|
description: ID of the identity the account is uncorrelated with.
|
|
example: 2c3780a46faadee4016fb4e018c20652
|
|
name:
|
|
type: string
|
|
description: Display name of the identity the account is uncorrelated with.
|
|
example: Allen Albertson
|
|
source:
|
|
required:
|
|
- type
|
|
- name
|
|
- id
|
|
type: object
|
|
description: The source the accounts are uncorrelated from.
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: The DTO type of the source the accounts are uncorrelated from.
|
|
enum:
|
|
- SOURCE
|
|
example: SOURCE
|
|
id:
|
|
type: string
|
|
description: The ID of the source the accounts are uncorrelated from.
|
|
example: 2c6180835d191a86015d28455b4b231b
|
|
name:
|
|
type: string
|
|
description: Display name of the source the accounts are uncorrelated from.
|
|
example: Corporate Directory
|
|
account:
|
|
type: object
|
|
description: Uncorrelated account.
|
|
required:
|
|
- id
|
|
- name
|
|
- nativeIdentity
|
|
- type
|
|
properties:
|
|
type:
|
|
enum:
|
|
- ACCOUNT
|
|
description: Uncorrelated account's DTO type.
|
|
example: ACCOUNT
|
|
id:
|
|
type: string
|
|
description: Uncorrelated account's ID.
|
|
example: 4dd497e3723e439991cb6d0e478375dd
|
|
name:
|
|
type: string
|
|
description: Uncorrelated account's display name.
|
|
example: Sadie Jensen
|
|
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
|
|
entitlementCount:
|
|
type: integer
|
|
format: int32
|
|
description: The number of entitlements associated with this account.
|
|
example: 0 |