Skip to main content
Version: 2.0.0

Benchmark Results

Generated: 2026-08-08 09:54:42 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.41 µs (10 allocs)2.19 µs (7 allocs)13.04 µs (43 allocs)unsupported6.08 µs (48 allocs)unsupported
Complex2.22 µs (15 allocs)3.57 µs (9 allocs)12.85 µs (139 allocs)unsupported13.91 µs (120 allocs)unsupported
Large1.59 µs (22 allocs)1.92 µs (3 allocs)47.67 µs (254 allocs)unsupported14.67 µs (126 allocs)unsupported

JSONValidate

JSON bytes → struct, then a separate validate step

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple3.38 µs (19 allocs)4.19 µs (16 allocs)unsupported3.49 µs (26 allocs)unsupportedunsupported
Complex9.65 µs (39 allocs)10.96 µs (33 allocs)unsupported10.29 µs (78 allocs)unsupportedunsupported

Marshal

Validate + JSON marshal

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple1.88 µs (11 allocs)2.71 µs (9 allocs)unsupportedunsupportedunsupportedunsupported

Unmarshal

JSON bytes → validated struct in a single call

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple4.96 µs (39 allocs)unsupportedunsupportedunsupported11.58 µs (81 allocs)4.62 µs (42 allocs)
Complex15.91 µs (122 allocs)unsupportedunsupportedunsupported50.26 µs (285 allocs)16.70 µs (149 allocs)

New

Validator creation overhead

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Simple15.70 µs (129 allocs)17.19 µs (187 allocs)unsupported30.72 µs (255 allocs)27.02 µs (305 allocs)6.89 µs (72 allocs)
Complex37.37 µs (299 allocs)unsupportedunsupported75.06 µs (515 allocs)7.46 µs (75 allocs)23.55 µs (243 allocs)

Schema

JSON Schema generation

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Uncached27.73 µs (227 allocs)unsupportedunsupported30.86 µs (255 allocs)unsupportedunsupported
Cached18 ns (0 allocs)unsupportedunsupported640 ns (6 allocs)unsupportedunsupported

OpenAPI

OpenAPI-compatible schema generation

StructPedantigoPlaygroundOzzoHumaGodanticGodasse
Uncached28.77 µs (229 allocs)unsupportedunsupported31.47 µs (255 allocs)unsupportedunsupported
Cached18 ns (0 allocs)unsupportedunsupported654 ns (6 allocs)unsupportedunsupported

Summary

Validate_Simple (struct validation)

Libraryns/opallocsvs Pedantigo
Pedantigo1.41 µs10baseline
Playground2.19 µs71.55x slower
Ozzo13.04 µs439.23x slower
Huma---
Godantic6.08 µs484.30x slower
Godasse---

Validate_Complex (nested structs)

Libraryns/opallocsvs Pedantigo
Pedantigo2.22 µs15baseline
Playground3.57 µs91.61x slower
Ozzo12.85 µs1395.80x slower
Huma---
Godantic13.91 µs1206.28x slower
Godasse---

JSONValidate_Simple (JSON → struct, then validate)

Libraryns/opallocsvs Pedantigo
Pedantigo3.38 µs19baseline
Playground4.19 µs161.24x slower
Ozzo---
Huma3.49 µs261.03x slower
Godantic---
Godasse---

JSONValidate_Complex (nested JSON)

Libraryns/opallocsvs Pedantigo
Pedantigo9.65 µs39baseline
Playground10.96 µs331.14x slower
Ozzo---
Huma10.29 µs781.07x slower
Godantic---
Godasse---

Unmarshal_Simple (JSON → validated struct, single call)

Libraryns/opallocsvs Pedantigo
Pedantigo4.96 µs39baseline
Playground---
Ozzo---
Huma---
Godantic11.58 µs812.34x slower
Godasse4.62 µs421.07x faster

Unmarshal_Complex (nested JSON, single call)

Libraryns/opallocsvs Pedantigo
Pedantigo15.91 µs122baseline
Playground---
Ozzo---
Huma---
Godantic50.26 µs2853.16x slower
Godasse16.70 µs1491.05x slower

Schema_Uncached (first-time generation)

Libraryns/opallocsvs Pedantigo
Pedantigo27.73 µs227baseline
Playground---
Ozzo---
Huma30.86 µs2551.11x slower
Godantic---
Godasse---

Schema_Cached (cached lookup)

Libraryns/opallocsvs Pedantigo
Pedantigo18 ns0baseline
Playground---
Ozzo---
Huma640 ns634.71x 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)