What are the valid values for a django URL field?
Is it only for http URL resources or does it support a wider range. eg ssh, rsync, git etc.
I tried putting what I considered to be valid Git URL and it failed.
Because I am not using the verify_exists which is being deprecated it doesn’t matter whether the resource exists or not.
It allows http(s) and ftp(s) only. This is the regular expression used to validate urls django.core.validators.URLValidator :