Livr, aka Language Independent Validation Rules, is a data validation language created in 2012 by Viktor Turskyi.
#809on PLDB | 12Years Old |
git clone https://github.com/koorchik/LIVR
Language Independent Validation Rules Specification
{
name: 'required',
phone: {max_length: 10},
address: {nested_object: {
city: 'required',
zip: ['required', 'positive_integer']
}}
}