You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
Is there a way to validate arrays, to say something like the array must have between 3 and 5 elements? And then to validate within the array, to make sure that each of those 3 to 5 elements are email addresses, or numbers greater than 100?
The text was updated successfully, but these errors were encountered:
You can use the length validator for validating the number of items but you currently cannot validate the objects in the array with a single validation call, instead you'd have to validate each array object manually.
There is a ticket for better array support (#1) so I'm closing this for now.
Is there a way to validate arrays, to say something like the array must have between 3 and 5 elements? And then to validate within the array, to make sure that each of those 3 to 5 elements are email addresses, or numbers greater than 100?
The text was updated successfully, but these errors were encountered: