Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 7.19 KB

README.md

File metadata and controls

56 lines (43 loc) · 7.19 KB

Language Independent Validation Rules (v2.0)

Validator meets the following requirements:

  1. Rules are declarative and language independent
  2. Any number of rules for each field
  3. Validator should return together errors for all fields
  4. Exclude all fields that do not have validation rules described
  5. Possibility to validate complex hierarchical structures
  6. Easy to describe and understand validation
  7. Returns understandable error codes (neither error messages nor numeric codes)
  8. Easy to implement own rules (usually you will have several in every project)
  9. Rules should be able to change results output ("trim", "nested_object", for example)
  10. Multipurpose (user input validation, configs validation, contracts programming etc)
  11. Unicode support

Try online

Existing implemenations

Latest LIVR version is 2.0 Previous LIVR version is 0.4

Documentation

Examples