Stringify
Check if the input value is a string or a number.
The validation rule requires a value to run against the input value.
Example
src/app/posts/controllers/create-post.ts
// ...
createPost.validation = {
rules: {
title: ["required", "stringify"],
},
};