LogoLogo

Schema Benchmarks

    • home
      Home

    • download_2
      Download

    • timer
      Initialization
    • check_circle
      Validation
    • output_circle
      Parsing
    • swap_horiz
      Codec
    • schema
      Standard Schema
    • format_quote
      String

    • error
      Stack

  • JSON Schema

    • data_object
      Schema to JSON
    • code
      JSON to Schema
    • verified
      Compliance

    • deployed_code
      Libraries

    • article
      Blog
Expand sidebarExpand sidebar
Benchmarks/Standard SchemaStandard Schema
github
GitHubGitHub
DiscordDiscord
PreferencesPreferences

Many libraries implement the Standard Schema interface, which allows many other libraries to accept them without needing to specialise for each library.

Copy to clipboardCopy to clipboard
import { personSchema } from "./schemas"; const person = await upfetch(url, { schema: personSchema, });
Copy to clipboardCopy to clipboard
import { personSchema } from "./schemas"; const person = await upfetch(url, { schema: personSchema });

We benchmark the time taken to parse using a standard schema.

infoInfo

Some libraries require an adapter before they can be used as a standard schema. The time to convert the schema is not measured, only the time to parse using it.

Data
  • errorInvalid
  • check_circleValid
Optimizations
  • flash_offNone
  • codeJIT
  • buildPrecompiled
Abort early
  • errorAll errors
  • warningAbort early
LibrarysortVersiondownload/wksortOptimizationsError typeMeanarrow_upwardCompare
@paseri/compiler
Code snippetCode snippet
upfetch(url, { schema })
0.7.7110PrecompiledAll errors963 ns
zod (compile)
Code snippetCode snippet
const compiledSchema = z.compile(schema, { strict: true });
upfetch(url, { schema: compiledSchema })

(Setup code is not benchmarked)

4.6.5n/aJITAll errors1 μs
1.23x
stat_minus_1
zod/mini (compile)
Code snippetCode snippet
const compiledSchema = z.compile(schema, { strict: true });
upfetch(url, { schema: compiledSchema })

(Setup code is not benchmarked)

4.6.5n/aJITAll errors1 μs
1.27x
stat_minus_1
sury
Code snippetCode snippet
upfetch(url, { schema })
11.0.0n/aJITAll errors2 μs
1.61x
stat_minus_1
ata-validator
Code snippetCode snippet
upfetch(url, { schema })
1.21.0n/aJITAll errors2 μs
1.66x
stat_minus_1
zod-compiler (compact)
Code snippetCode snippet
upfetch(url, { schema })
2.0.4n/aPrecompiledAll errors2 μs
2.18x
stat_minus_1
@paseri/paseri
Code snippetCode snippet
upfetch(url, { schema })
1.9.7136NoneAll errors3 μs
3.49x
stat_minus_1
zod-compiler
Code snippetCode snippet
upfetch(url, { schema })
2.0.4n/aPrecompiledAll errors4 μs
3.7x
stat_minus_1
zod-compiler (bag)
Code snippetCode snippet
upfetch(url, { schema })
2.0.4n/aPrecompiledAll errors4 μs
3.76x
stat_minus_1
zod
Code snippetCode snippet
upfetch(url, { schema })
4.6.5n/aJITAll errors6 μs
6.21x
stat_minus_1
typia
Code snippetCode snippet
const validate = typia.createValidate<TypiaSchema>();
upfetch(url, { schema: validate })

(Setup code is not benchmarked)

14.0.6n/aPrecompiledAll errors7 μs
6.87x
stat_minus_1
valibot
Code snippetCode snippet
upfetch(url, { schema })
1.5.0n/aNoneAll errors7 μs
7.36x
stat_minus_1
arktype
Code snippetCode snippet
upfetch(url, { schema })
2.2.3n/aJITAll errors8 μs
8.29x
stat_minus_1
@remix-run/data-schema
Code snippetCode snippet
upfetch(url, { schema })
0.3.0n/aNoneAll errors9 μs
9.26x
stat_minus_1
effect@rc
Code snippetCode snippet
const standardSchema = Schema.toStandardSchemaV1(schema, { parseOptions: { errors: "first" } });
upfetch(url, { schema: standardSchema });

(Setup code is not benchmarked)

4.0.0-rc.112n/aNoneAbort early11 μs
11.56x
stat_minus_1
effect@rc
Code snippetCode snippet
const standardSchema = Schema.toStandardSchemaV1(
  schema,
  { parseOptions: { errors: "all" } }
);
upfetch(url, { schema: standardSchema });

(Setup code is not benchmarked)

4.0.0-rc.112n/aNoneAll errors11 μs
11.74x
stat_minus_1
zod/mini
Code snippetCode snippet
upfetch(url, { schema })
4.6.5n/aJITAll errors12 μs
12.62x
stat_minus_1
zod/v3
Code snippetCode snippet
upfetch(url, { schema })
4.6.5n/aNoneAll errors13 μs
13.68x
stat_minus_1
decoders
Code snippetCode snippet
upfetch(url, { schema })
2.9.3n/aNoneAll errors16 μs
16.24x
stat_minus_1
@railway-ts/pipelines
Code snippetCode snippet
upfetch(url, { schema })
0.1.29n/aNoneAll errors16 μs
16.81x
stat_minus_1
effect
Code snippetCode snippet
const standardSchema = Schema.standardSchemaV1(schema, { errors: "all" });
upfetch(url, { schema: standardSchema });

(Setup code is not benchmarked)

3.22.2n/aNoneAll errors17 μs
17.76x
stat_minus_1
effect
Code snippetCode snippet
const standardSchema = Schema.standardSchemaV1(schema, { errors: "first" });
upfetch(url, { schema: standardSchema });

(Setup code is not benchmarked)

3.22.2n/aNoneAbort early17 μs
17.92x
stat_minus_1
joi
Code snippetCode snippet
upfetch(url, { schema })
18.2.9n/aNoneAll errors37 μs
38.69x
stat_minus_1
yup
Code snippetCode snippet
upfetch(url, { schema })
1.7.1n/aNoneAll errors134 μs
138.64x
stat_minus_3
Created by eskimojo for Open Circle

Preferences

Style
Theme
NPM browser
Code ligatures