int_list_validator(sep=', ', message=None, code='invalid', allow_negative=False) [source]
code The error code used by ValidationError if validation fails. Defaults to "invalid".
class RegexValidator(regex=None, message=None, code=None, inverse_match=None, flags=0) [source]
class MaxValueValidator(max_value, message=None) [source] Raises a ValidationError
inverse_match The match mode for regex. Defaults to False.
class URLValidator(schemes=None, regex=None, message=None, code=None) [source] A R
whitelist Whitelist of email domains to allow. By default, a regular expression (the domain_regex attribute) is
schemes URL/URI scheme list to validate against. If not provided, the default list is ['http', 'https', 'ftp', 'ftps']
class MaxLengthValidator(max_length, message=None) [source] Raises a ValidationError
regex The regular expression pattern to search for the provided value, or a pre-compiled regular expression. By
Page 2 of 3