Array
Check if the input is an array regardless the content type of the array.
The validation rule requires a value to run against the input value.
Example
src/app/posts/controllers/create-post.ts
// ...
createPost.validation = {
rules: {
keywords: ["required", "array"],
},
};