Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions okta/models/user_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,7 @@ class UserProfile(BaseModel):
"https://datatracker.ietf.org/doc/html/rfc1808).",
alias="profileUrl",
)
second_email: Optional[
Annotated[str, Field(min_length=5, strict=True, max_length=100)]
] = Field(
second_email: Optional[Annotated[str, Field(strict=True, max_length=100)]] = Field(
default=None,
description="The secondary email address of the user typically used for account recovery. For validation, "
"see [RFC 5322 Section 3.2.3](https://datatracker.ietf.org/doc/html/rfc5322#section-3.2.3).",
Expand Down
1 change: 0 additions & 1 deletion openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82223,7 +82223,6 @@ components:
type: string
format: email
description: The secondary email address of the user typically used for account recovery. For validation, see [RFC 5322 Section 3.2.3](https://datatracker.ietf.org/doc/html/rfc5322#section-3.2.3).
minLength: 5
maxLength: 100
nullable: true
state:
Expand Down
Loading