Benchmark Results
Generated: 2026-03-24 01:46:01 UTC
If you're interested in diving deeper, check out our benchmark repository.
Library Notes
Feature Comparison
| Feature | Pedantigo | Playground | Ozzo | Huma | Godantic | Godasse |
|---|---|---|---|---|---|---|
| Declarative constraints | ✅ tags | ✅ tags | ✅ rules | ✅ tags | ✅ methods | ❌ hand-written |
| JSON Schema generation | ✅ | ❌ | ❌ | ✅ | ✅ | ❌ |
| Default values | ✅ | ❌ | ❌ | ❌ | ✅ | ✅ |
| Unmarshal + validate | ✅ | ❌ | ❌ | ✅ | ✅ | ✅ |
| Validate existing struct | ✅ | ✅ | ✅ | ❌ | ✅ | ❌* |
*Godasse requires hand-written Validate() methods
Library Descriptions
-
Pedantigo - Struct tag-based validation (
validate:"required,email,min=5"). JSON Schema generation with caching. -
Playground (go-playground/validator) - Struct tag-based validation. Rich constraint library, no JSON Schema.
-
Ozzo (ozzo-validation) - Rule builder API (
validation.Field(&u.Name, validation.Required, validation.Length(2,100))). No struct tags. -
Huma - OpenAPI-focused. Validates
map[string]anyagainst schemas, not structs directly. -
Godantic - Method-based constraints (
FieldName() FieldOptions[T]). JSON Schema, defaults, streaming partial JSON. -
Godasse - Deserializer with
default:tag. All constraint validation requires hand-writtenValidate()methods.
JSONValidate
JSON bytes → struct + validate
| Struct | Pedantigo | Playground | Ozzo | Huma | Godantic | Godasse |
|---|---|---|---|---|---|---|
| Simple | 3.39 µs (19 allocs) | 4.23 µs (16 allocs) | unsupported | 3.48 µs (26 allocs) | unsupported | 5.34 µs (46 allocs) |
| Complex | 9.69 µs (39 allocs) | 10.95 µs (33 allocs) | unsupported | 10.27 µs (78 allocs) | unsupported | 17.26 µs (153 allocs) |
Marshal
Validate + JSON marshal
| Struct | Pedantigo | Playground | Ozzo | Huma | Godantic | Godasse |
|---|---|---|---|---|---|---|
| Simple | 1.88 µs (11 allocs) | 2.74 µs (9 allocs) | unsupported | unsupported | unsupported | unsupported |
New
Validator creation overhead
| Struct | Pedantigo | Playground | Ozzo | Huma | Godantic | Godasse |
|---|---|---|---|---|---|---|
| Simple | 12.15 µs (110 allocs) | 16.85 µs (187 allocs) | unsupported | 30.52 µs (255 allocs) | 27.06 µs (305 allocs) | 6.68 µs (72 allocs) |
| Complex | 29.36 µs (270 allocs) | unsupported | unsupported | 75.07 µs (515 allocs) | 7.48 µs (75 allocs) | 23.31 µs (243 allocs) |
OpenAPI
OpenAPI-compatible schema generation
| Struct | Pedantigo | Playground | Ozzo | Huma | Godantic | Godasse |
|---|---|---|---|---|---|---|
| Uncached | 24.32 µs (204 allocs) | unsupported | unsupported | 31.02 µs (255 allocs) | unsupported | unsupported |
| Cached | 18 ns (0 allocs) | unsupported | unsupported | 638 ns (6 allocs) | unsupported | unsupported |
Schema
JSON Schema generation
| Struct | Pedantigo | Playground | Ozzo | Huma | Godantic | Godasse |
|---|---|---|---|---|---|---|
| Uncached | 23.74 µs (202 allocs) | unsupported | unsupported | 30.93 µs (255 allocs) | unsupported | unsupported |
| Cached | 19 ns (0 allocs) | unsupported | unsupported | 628 ns (6 allocs) | unsupported | unsupported |
Validate
Validate existing struct (no JSON parsing)
| Struct | Pedantigo | Playground | Ozzo | Huma | Godantic | Godasse |
|---|---|---|---|---|---|---|
| Simple | 1.42 µs (10 allocs) | 2.18 µs (7 allocs) | 12.94 µs (43 allocs) | unsupported | 6.00 µs (48 allocs) | unsupported |
| Complex | 2.31 µs (15 allocs) | 3.56 µs (9 allocs) | 12.43 µs (139 allocs) | unsupported | 13.82 µs (120 allocs) | unsupported |
| Large | 1.59 µs (22 allocs) | 2.05 µs (3 allocs) | 47.67 µs (254 allocs) | unsupported | 14.62 µs (126 allocs) | unsupported |
Summary
Validate_Simple (struct validation)
| Library | ns/op | allocs | vs Pedantigo |
|---|---|---|---|
| Pedantigo | 1.42 µs | 10 | baseline |
| Playground | 2.18 µs | 7 | 1.53x slower |
| Ozzo | 12.94 µs | 43 | 9.09x slower |
| Huma | - | - | - |
| Godantic | 6.00 µs | 48 | 4.21x slower |
| Godasse | - | - | - |
Validate_Complex (nested structs)
| Library | ns/op | allocs | vs Pedantigo |
|---|---|---|---|
| Pedantigo | 2.31 µs | 15 | baseline |
| Playground | 3.56 µs | 9 | 1.54x slower |
| Ozzo | 12.43 µs | 139 | 5.37x slower |
| Huma | - | - | - |
| Godantic | 13.82 µs | 120 | 5.97x slower |
| Godasse | - | - | - |
JSONValidate_Simple (JSON → struct + validate)
| Library | ns/op | allocs | vs Pedantigo |
|---|---|---|---|
| Pedantigo | 3.39 µs | 19 | baseline |
| Playground | 4.23 µs | 16 | 1.25x slower |
| Ozzo | - | - | - |
| Huma | 3.48 µs | 26 | 1.03x slower |
| Godantic | - | - | - |
| Godasse | 5.34 µs | 46 | 1.58x slower |
JSONValidate_Complex (nested JSON)
| Library | ns/op | allocs | vs Pedantigo |
|---|---|---|---|
| Pedantigo | 9.69 µs | 39 | baseline |
| Playground | 10.95 µs | 33 | 1.13x slower |
| Ozzo | - | - | - |
| Huma | 10.27 µs | 78 | 1.06x slower |
| Godantic | - | - | - |
| Godasse | 17.26 µs | 153 | 1.78x slower |
Schema_Uncached (first-time generation)
| Library | ns/op | allocs | vs Pedantigo |
|---|---|---|---|
| Pedantigo | 23.74 µs | 202 | baseline |
| Playground | - | - | - |
| Ozzo | - | - | - |
| Huma | 30.93 µs | 255 | 1.30x slower |
| Godantic | - | - | - |
| Godasse | - | - | - |
Schema_Cached (cached lookup)
| Library | ns/op | allocs | vs Pedantigo |
|---|---|---|---|
| Pedantigo | 19 ns | 0 | baseline |
| Playground | - | - | - |
| Ozzo | - | - | - |
| Huma | 628 ns | 6 | 33.63x slower |
| Godantic | - | - | - |
| Godasse | - | - | - |
Generated by pedantigo-benchmarks
Benchmark naming convention
Benchmark_<Library>_<Feature>_<Struct>
Libraries: Pedantigo, Playground, Ozzo, Huma, Godantic, Godasse
Features: Validate, JSONValidate, New, Schema, OpenAPI, Marshal
Structs: Simple (5 fields), Complex (nested), Large (20+ fields)