Skip to content

Commit

Permalink
update with property (draft)
Browse files Browse the repository at this point in the history
  • Loading branch information
bazarnov committed Oct 31, 2024
1 parent 515e3ea commit 575f789
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,24 @@ definitions:
{
"extract_output": ["access_token", "refresh_token", "other_field"]
}
state:
type: object
additionalProperties: true
description: |-
The OAuth Specific object to provide the criteria of how the `state` query param should be constructed,
including length and complexity.
TODO: review and edit this property, once the state generation logic is finilized.
Examples:
{
"state": {
"min_length": 7,
"max_length": 128,
"min_special": 3,
"excluded": ["$", "\\", "."]
}
}
client_id_key:
type: string
description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,24 @@ definitions:
{
"extract_output": ["access_token", "refresh_token", "other_field"]
}
state:
type: object
additionalProperties: true
description: |-
The OAuth Specific object to provide the criteria of how the `state` query param should be constructed,
including length and complexity.
TODO: review and edit this property, once the state generation logic is finilized.
Examples:
{
"state": {
"min_length": 7,
"max_length": 128,
"min_special": 3,
"excluded": ["$", "\\", "."]
}
}
client_id_key:
type: string
description: |-
Expand Down

0 comments on commit 575f789

Please sign in to comment.