Skip to main content
Version: Next

Benchmark Results

Generated: 2026-08-08 17:07:54 UTC

If you're interested in diving deeper, check out our benchmark repository.

Library Notes

Feature Comparison

FeaturePedantigoPlaygroundOzzoHumaGodanticGodasse
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

  1. Pedantigo - Struct tag-based validation (validate:"required,email,min=5"). JSON Schema generation with caching.

  2. Playground (go-playground/validator) - Struct tag-based validation. Rich constraint library, no JSON Schema.

  3. Ozzo (ozzo-validation) - Rule builder API (validation.Field(&u.Name, validation.Required, validation.Length(2,100))). No struct tags.

  4. Huma - OpenAPI-focused. Validates map[string]any against schemas, not structs directly.

  5. Godantic - Method-based constraints (FieldName() FieldOptions[T]). JSON Schema, defaults, streaming partial JSON.

  6. Godasse - Deserializer with default: tag. All constraint validation requires hand-written Validate() methods.


Getting the Best Performance

New[T]() does the expensive work once: it walks the struct via reflection, resolves every constraint tag, and builds an internal field-constraint cache (plus the JSON field deserializers). That one-time cost is what the New section below measures (microsecond range). Every other operation - Validate, Unmarshal, Marshal, Schema - reuses that precomputed cache and runs in the hundreds-of-ns to low-µs range, which is why those numbers consistently beat libraries that re-resolve constraints or re-walk structs on every call.

This only pays off if the *Validator[T] returned by New is built once and reused - not recreated per request. Two ways to do that:

Module-level variable (sufficient to call the validator directly):

var userValidator = validator.New[User]()

func handleCreateUser(body []byte) (*User, error) {
return userValidator.Unmarshal(body) // reuses the cached field constraints
}

Register (needed in addition, only if a framework integration - e.g. the Echo Binder plugin, or UnmarshalInto - must find the validator for a type it only knows via reflect.Type at runtime, not through your module-level variable):

var _ = validator.Register(validator.New[User]())

Register[T] may be called exactly once per type - a second call for the same type panics, by design. A type could have multiple differently-configured validators (different Options), and pedantigo has no way to guess which one a framework plugin should resolve to, so it refuses to silently pick one. Call Register from exactly one package-level var declaration per type.


Validate

Validate existing struct (no JSON parsing)

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple1.01 µs (10 allocs)1.65 µs (7 allocs)9.20 µs (43 allocs)unsupported4.26 µs (48 allocs)unsupported
Complex1.62 µs (15 allocs)2.69 µs (9 allocs)8.87 µs (139 allocs)unsupported10.47 µs (120 allocs)unsupported
Large1.12 µs (22 allocs)1.33 µs (3 allocs)33.63 µs (254 allocs)unsupported10.48 µs (126 allocs)unsupported

JSONValidate

JSON bytes → struct, then a separate validate step

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple2.51 µs (19 allocs)3.16 µs (16 allocs)unsupported2.59 µs (26 allocs)unsupportedunsupported
Complex6.84 µs (39 allocs)8.06 µs (33 allocs)unsupported7.65 µs (78 allocs)unsupportedunsupported

Marshal

Validate + JSON marshal

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple1.36 µs (11 allocs)2.18 µs (9 allocs)unsupportedunsupportedunsupportedunsupported

Unmarshal

JSON bytes → validated struct in a single call

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple3.70 µs (39 allocs)unsupportedunsupportedunsupported8.46 µs (81 allocs)3.46 µs (42 allocs)
Complex11.26 µs (122 allocs)unsupportedunsupportedunsupported35.96 µs (285 allocs)12.25 µs (149 allocs)

New

Validator creation overhead

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple11.74 µs (129 allocs)12.22 µs (187 allocs)unsupported23.31 µs (255 allocs)20.19 µs (305 allocs)4.98 µs (72 allocs)
Complex27.12 µs (299 allocs)unsupportedunsupported57.99 µs (515 allocs)5.57 µs (75 allocs)17.30 µs (243 allocs)

Schema

JSON Schema generation

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Uncached20.01 µs (227 allocs)unsupportedunsupported23.37 µs (255 allocs)unsupportedunsupported
Cached15 ns (0 allocs)unsupportedunsupported466 ns (6 allocs)unsupportedunsupported

OpenAPI

OpenAPI-compatible schema generation

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Uncached20.65 µs (229 allocs)unsupportedunsupported23.35 µs (255 allocs)unsupportedunsupported
Cached15 ns (0 allocs)unsupportedunsupported461 ns (6 allocs)unsupportedunsupported

Summary

Validate_Simple (struct validation)

Libraryns/opallocsvs Pedantigo
Pedantigo1.01 µs10baseline
Playground1.65 µs71.62x slower
Ozzo9.20 µs439.08x slower
Huma---
Godantic4.26 µs484.21x slower
Godasse---

Validate_Complex (nested structs)

Libraryns/opallocsvs Pedantigo
Pedantigo1.62 µs15baseline
Playground2.69 µs91.66x slower
Ozzo8.87 µs1395.46x slower
Huma---
Godantic10.47 µs1206.45x slower
Godasse---

JSONValidate_Simple (JSON → struct, then validate)

Libraryns/opallocsvs Pedantigo
Pedantigo2.51 µs19baseline
Playground3.16 µs161.26x slower
Ozzo---
Huma2.59 µs261.03x slower
Godantic---
Godasse---

JSONValidate_Complex (nested JSON)

Libraryns/opallocsvs Pedantigo
Pedantigo6.84 µs39baseline
Playground8.06 µs331.18x slower
Ozzo---
Huma7.65 µs781.12x slower
Godantic---
Godasse---

Unmarshal_Simple (JSON → validated struct, single call)

Libraryns/opallocsvs Pedantigo
Pedantigo3.70 µs39baseline
Playground---
Ozzo---
Huma---
Godantic8.46 µs812.28x slower
Godasse3.46 µs421.07x faster

Unmarshal_Complex (nested JSON, single call)

Libraryns/opallocsvs Pedantigo
Pedantigo11.26 µs122baseline
Playground---
Ozzo---
Huma---
Godantic35.96 µs2853.19x slower
Godasse12.25 µs1491.09x slower

Schema_Uncached (first-time generation)

Libraryns/opallocsvs Pedantigo
Pedantigo20.01 µs227baseline
Playground---
Ozzo---
Huma23.37 µs2551.17x slower
Godantic---
Godasse---

Schema_Cached (cached lookup)

Libraryns/opallocsvs Pedantigo
Pedantigo15 ns0baseline
Playground---
Ozzo---
Huma466 ns631.44x slower
Godantic---
Godasse---

Generated by pedantigo-benchmarks

Benchmark naming convention
Benchmark_<Library>_<Feature>_<Struct>

Libraries: Pedantigo, Playground, Ozzo, Huma, Godantic, Godasse
Features: Validate, JSONValidate, Marshal, Unmarshal, New, Schema, OpenAPI
Structs: Simple (5 fields), Complex (nested), Large (20+ fields)