Skip to content
Merged
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: 2 additions & 2 deletions schemas/biocommons.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ def _check(v: str) -> str:
"max_length": "Password must be 72 characters or less.",
"pattern": PASSWORD_FORMAT_MESSAGE
})
BiocommonsFullName = ValidatedString(min_length=1, max_length=255,
BiocommonsFullName = ValidatedString(min_length=1, max_length=300,
messages={
"min_length": "Full name must be at least 1 character.",
"max_length": "Full name must be 255 characters or less.",
"max_length": "Full name must be 300 characters or less.",
},
)

Expand Down