Skip to content

Latest commit

 

History

History
61 lines (50 loc) · 1.6 KB

README.md

File metadata and controls

61 lines (50 loc) · 1.6 KB

a zero dependency performant validation library

Install

go get github.com/aacebo/owl

Usage

schema := owl.String().Required()

if err := schema.Validate("..."); err != nil { // nil
	panic(err)
}

Features

Name Status
Any
Bool
Float
Int
String
Object
Array
Time
Union
Custom Error Messages
Custom Rules

Benchmarks

Benchmarks