Files
api-specs/idn/beta/schemas/AttrSyncSourceConfig.yaml
GitHub Action Bot 03c7b80a9e Automated commit 'Merge pull request #1469 from sailpoint/devrel-1185-2
Devrel 1185 2' by github action: 6736623414
2023-11-02 18:15:05 +00:00

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'
}
]