mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
29 lines
697 B
YAML
29 lines
697 B
YAML
|
|
type: object
|
|
description: Specification of attribute sync configuration for a source
|
|
required:
|
|
- source
|
|
- attributes
|
|
properties:
|
|
source:
|
|
$ref: '../../v3/schemas/AttrSyncSource.yaml'
|
|
attributes:
|
|
type: array
|
|
description: Attribute synchronization configuration for specific identity attributes in the context of a source
|
|
items:
|
|
$ref: './AttrSyncSourceAttributeConfig.yaml'
|
|
example: [
|
|
{
|
|
name: 'email',
|
|
displayName: 'Email',
|
|
enabled: true,
|
|
target: 'mail'
|
|
},
|
|
{
|
|
name: 'firstname',
|
|
displayName: 'First Name',
|
|
enabled: false,
|
|
target: 'givenName'
|
|
}
|
|
]
|