mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
* IDNWAIMEA-10182: Update documentation to reflect V3 migration * IDNWAIMEA-10182: Removing redundant path structure. * IDNWAIMEA-10182: Adding error responses and OAuth2 * IDNWAIMEA-10182: Adding config to v3 schema path * IDNWAIMEA-10182: Removing POST and PUT for this story * IDNWAIMEA-10182: Fixing schema for V3 * IDNWAIMEA-10182: Adding PUT and POST and removing beta traces * IDNWAIMEA-10182: Removing Beta PasswordOrgConfig * IDNWAIMEA-10182: fix API error linter * IDNWAIMEA-10182: refactoring * IDNWAIMEA-10182: refactor * IDNWAIMEA-10182: fix description --------- Co-authored-by: moise mokoy <85256062+moise-mokoy-sp@users.noreply.github.com>' by github action: 4736087582
28 lines
790 B
YAML
28 lines
790 B
YAML
type: object
|
|
properties:
|
|
customInstructionsEnabled:
|
|
type: boolean
|
|
description: Indicator whether custom password instructions feature is enabled. The default value is false.
|
|
default: false
|
|
example: true
|
|
digitTokenEnabled:
|
|
type: boolean
|
|
description: Indicator whether "digit token" feature is enabled. The default value is false.
|
|
default: false
|
|
example: true
|
|
digitTokenDurationMinutes:
|
|
type: integer
|
|
format: int32
|
|
description: The duration of "digit token" in minutes. The default value is 5.
|
|
minimum: 1
|
|
maximum: 60
|
|
default: 5
|
|
example: 10
|
|
digitTokenLength:
|
|
type: integer
|
|
format: int32
|
|
description: The length of "digit token". The default value is 6.
|
|
minimum: 6
|
|
maximum: 18
|
|
default: 6
|
|
example: 9 |