mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
* Fixed several issues * More fixes to v3 APIs * More fixes * Fixed more v3 schema issues * fixed campaign filters path * Updated redoc API generator to v10 * Updated redoc api generator action to latest version * Added log to action * Fixed path in action * Added orderBy to saved search * Added some fixes for beta * Fixed duplicate nullable * Triggering checks again * Triggering checks again * More beta fixes * Fixed schema bug' by github action: 7980819692
29 lines
1.2 KiB
YAML
29 lines
1.2 KiB
YAML
type: object
|
|
description: Defines matching criteria for an Account to be provisioned with a specific Access Profile
|
|
properties:
|
|
operation:
|
|
$ref: './ProvisioningCriteriaOperation.yaml'
|
|
attribute:
|
|
type: string
|
|
description: >-
|
|
Name of the Account attribute to be tested. If **operation** is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS,
|
|
this field is required. Otherwise, specifying it is an error.
|
|
example: email
|
|
nullable: true
|
|
value:
|
|
type: string
|
|
description: >-
|
|
String value to test the Account attribute w/r/t the specified operation. If the operation is one of EQUALS,
|
|
NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it is an error. If the Attribute is
|
|
not String-typed, it will be converted to the appropriate type.
|
|
example: "carlee.cert1c9f9b6fd@mailinator.com"
|
|
children:
|
|
type: string
|
|
description: >-
|
|
Array of child criteria. Required if the operation is AND or OR, otherwise it must be left null. A maximum
|
|
of three levels of criteria are supported, including leaf nodes.
|
|
example: null
|
|
nullable: true
|
|
|
|
|