We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something along these lines:
- name: organizacion label: Una organizacion obj: entity hidden: no attributes: - name: nombre label: Nombre required: true - name: date label: Date pattern: \d\d\d\d-\d\d-\d\d
The text was updated successfully, but these errors were encountered:
So the new aspect in this is required and pattern? What do you think the pros and cons of regexes vs. pre-defined types (URL, Email, ...) are?
required
pattern
Sorry, something went wrong.
Pros of regexes: I can validate whatever I need — Cons: having to look up a working email address-matching regex every time I do it :)
Cons of pre-defined types: How do I add a type? Why not just use regexes?
No branches or pull requests
Something along these lines:
The text was updated successfully, but these errors were encountered: