mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
37 lines
980 B
YAML
37 lines
980 B
YAML
title: firstValid
|
|
type: object
|
|
required:
|
|
- values
|
|
properties:
|
|
values:
|
|
type: array
|
|
items:
|
|
type: object
|
|
description: An array of attributes to evaluate for existence.
|
|
example:
|
|
[
|
|
{
|
|
"attributes":
|
|
{
|
|
"sourceName": "Active Directory",
|
|
"attributeName": "sAMAccountName",
|
|
},
|
|
"type": "accountAttribute",
|
|
},
|
|
{
|
|
"attributes": { "sourceName": "Okta", "attributeName": "login" },
|
|
"type": "accountAttribute",
|
|
},
|
|
{
|
|
"attributes":
|
|
{ "sourceName": "HR Source", "attributeName": "employeeID" },
|
|
"type": "accountAttribute",
|
|
},
|
|
]
|
|
ignoreErrors:
|
|
type: boolean
|
|
description: a true or false value representing to move on to the next option if an error (like an Null Pointer Exception) were to occur.
|
|
example: false
|
|
requiresPeriodicRefresh:
|
|
$ref: './RequiresPeriodicRefresh.yaml'
|