A common interface for TypeScript validation libraries
standardschema.dev
Standard Schema is a common interface designed to be implemented by JavaScript and TypeScript schema libraries.
The goal is to make it easier for ecosystem tools to accept user-defined type validators, without needing to write custom logic or adapters for each supported library. And since Standard Schema is a specification, they can do so with no additional runtime dependencies. Integrate once, validate anywhere.
The spec was designed by the creators of Zod, Valibot, and ArkType. Recent versions of these libraries already implement the spec (see the full list of compatible libraries below).
The specification consists of a single TypeScript interface StandardSchemaV1
to be implemented by any schema library wishing to be spec-compliant.
This interface can be found below in its entirety. Libraries wishing to implement the spec can copy/paste the code block below into their codebase. It's also available at @standard-schema/spec
on npm and JSR. There will be zero changes without a major version bump.
/** The Standard Schema interface. */
export interface StandardSchemaV1<Input = unknown, Output = Input> {
/** The Standard Schema properties. */
readonly '~standard': StandardSchemaV1.Props<Input, Output>;
}
export declare namespace StandardSchemaV1 {
/** The Standard Schema properties interface. */
export interface Props<Input = unknown, Output = Input> {
/** The version number of the standard. */
readonly version: 1;
/** The vendor name of the schema library. */
readonly vendor: string;
/** Validates unknown input values. */
readonly validate: (
value: unknown
) => Result<Output> | Promise<Result<Output>>;
/** Inferred types associated with the schema. */
readonly types?: Types<Input, Output> | undefined;
}
/** The result interface of the validate function. */
export type Result<Output> = SuccessResult<Output> | FailureResult;
/** The result interface if validation succeeds. */
export interface SuccessResult<Output> {
/** The typed output value. */
readonly value: Output;
/** The non-existent issues. */
readonly issues?: undefined;
}
/** The result interface if validation fails. */
export interface FailureResult {
/** The issues of failed validation. */
readonly issues: ReadonlyArray<Issue>;
}
/** The issue interface of the failure output. */
export interface Issue {
/** The error message of the issue. */
readonly message: string;
/** The path of the issue, if any. */
readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;
}
/** The path segment interface of the issue. */
export interface PathSegment {
/** The key representing a path segment. */
readonly key: PropertyKey;
}
/** The Standard Schema types interface. */
export interface Types<Input = unknown, Output = Input> {
/** The input type of the schema. */
readonly input: Input;
/** The output type of the schema. */
readonly output: Output;
}
/** Infers the input type of a Standard Schema. */
export type InferInput<Schema extends StandardSchemaV1> = NonNullable<
Schema['~standard']['types']
>['input'];
/** Infers the output type of a Standard Schema. */
export type InferOutput<Schema extends StandardSchemaV1> = NonNullable<
Schema['~standard']['types']
>['output'];
}
The specification meets a few primary design objectives:
- Support runtime validation. Given a Standard Schema compatible validator, you should be able to validate data with it (duh). Any validation errors should be presented in a standardized format.
- Support static type inference. For TypeScript libraries that do type inference, the specification provides a standard way for them to "advertise" their inferred type, so it can be extracted and used by external tools.
- Minimal. It should be easy for libraries to implement this spec in a few lines of code that call their existing functions/methods.
- Avoid API conflicts. The entire spec is tucked inside a single object property called
~standard
, which avoids potential naming conflicts with the API surface of existing libraries. - Do no harm to DX. The
~standard
property is tilde-prefixed to de-prioritize it in autocompletion. By contrast, an underscore-prefixed property would show up before properties/methods with alphanumeric names.
These are the libraries that have already implemented the Standard Schema interface. (If you maintain a library that implements the spec, create a PR to add yourself!)
Implementer | Version(s) | Link |
---|---|---|
Zod | 3.24.0+ | PR |
Valibot | v1.0+ | PR |
ArkType | v2.0+ | PR |
Effect Schema | 🚧 | PR |
Arri Schema | v0.71.0+ | PR |
TypeMap | v0.8.0+ | PR |
Formgator | v0.1.0+ | PR |
decoders | v2.6.0+ | PR |
ReScript Schema | v9.2.0+ | PR |
Skunkteam Types | v8.3.0+ | PR |
The following tools accept user-defined schemas conforming to the Standard Schema spec. (If you maintain a tool that supports Standard Schemas, create a PR to add yourself!)
Integrator | Description | Link |
---|---|---|
tRPC | Move fast and break nothing. End-to-end typesafe APIs made easy | PR |
TanStack Form | Headless, performant, and type-safe form state management for TS/JS, React, Vue, Angular, Solid, and Lit | PR |
TanStack Router | A fully type-safe React router with built-in data fetching, stale-while revalidate caching and first-class search-param APIs | PR |
Hono Middleware | Fast, lightweight server, built on Web Standards | PR |
Qwik 🚧 | Instant-loading web apps, without effort | PR |
UploadThing | File uploads for modern web devs | Docs |
T3 Env | Framework agnostic validation for type-safe environment variables | PR |
OpenAuth | Universal, standards-based auth provider | Docs |
renoun | The Documentation Toolkit for React | Docs |
Formwerk | A Vue.js Framework for building high-quality, accessible, delightful forms. | PR |
GQLoom | Weave GraphQL schema and resolvers using Standard Schema | PR |
Nuxt UI (v3) | A UI Library for modern web apps, powered by Vue & Tailwind CSS | PR |
oRPC | Typesafe APIs made simple 🪄 | PR |
Regle | Type-safe model-based form validation library for Vue.js | PR |
upfetch | Tiny & composable fetch configuration tool with sensible defaults and built-in schema validation | PR |
rest-client | Ultra-lightweight and easy-to-use http(s) client for node.js supporting JSON and streams with no external dependencies | Docs |
make-service | A set of utilities to improve the DX of native fetch to better interact with external APIs. |
PR |
call-api | A lightweight fetching library packed with essential features - retries, interceptors, request deduplication and much more, all while still retaining a similar API surface with regular Fetch. | PR |
cachified | Use everything as a cache with type-safety (by Standard Schema), stale-while-revalidate, parallel-fetch deduplication, ... | Docs |
React Hook Form | React Hooks for form state management and validation (Web + React Native). | PR |
Mage | Build web applications with Deno and Preact | Docs |
Better-fetch | Advanced fetch library for typescript, supports zod schema validations, pre-defined routes, hooks, plugins and more. Works on the browser, node (version 18+), workers, deno and bun. | Docs |
Schemas libraries that want to support Standard Schema must implement the StandardSchemaV1
interface. Start by copying the specification file above into your library. It consists of types only.
Then implement the spec by adding the ~standard
property to your validator objects/instances. We recommend using extends
/ implements
to ensure static agreement with the interface. It doesn't matter whether your schema library returns plain objects, functions, or class instances. The only thing that matters is that the ~standard
property is defined somehow.
Here's a simple worked example of a string validator that implements the spec.
import type {StandardSchemaV1} from '@standard-schema/spec';
// Step 1: Define the schema interface
interface StringSchema extends StandardSchemaV1<string> {
type: 'string';
message: string;
}
// Step 2: Implement the schema interface
function string(message: string = 'Invalid type'): StringSchema {
return {
type: 'string',
message,
'~standard': {
version: 1,
vendor: 'valizod',
validate(value) {
return typeof value === 'string' ? {value} : {issues: [{message}]};
},
},
};
}
We recommend defining the ~standard.validate()
function in terms of your library's existing validation functions/methods. Ideally implementing the spec only requires a handful of lines of code.
Avoid returning Promise
from ~standard.validate()
unless absolutely necessary. Some third-party libraries may not support async validation.
Third-party libraries and frameworks can leverage the Standard Schema spec to accept user-defined schemas in a type-safe way.
To get started, copy and paste the specification file into your project. Alternatively (if you are okay with the extra dependency), you can install the @standard-schema/spec
package from npm or JSR as a dependency. It is not recommended to install as a dev dependency, see the associated FAQ for details.
npm install @standard-schema/spec # npm
yarn add @standard-schema/spec # yarn
pnpm add @standard-schema/spec # pnpm
bun add @standard-schema/spec # bun
deno add jsr:@standard-schema/spec # deno
Here's is an simple example of a generic function that accepts an arbitrary spec-compliant validator and uses it to parse some data.
import type {StandardSchemaV1} from '@standard-schema/spec';
export async function standardValidate<T extends StandardSchemaV1>(
schema: T,
input: StandardSchemaV1.InferInput<T>
): Promise<StandardSchemaV1.InferOutput<T>> {
let result = schema['~standard'].validate(input);
if (result instanceof Promise) result = await result;
// if the `issues` field exists, the validation failed
if (result.issues) {
throw new Error(JSON.stringify(result.issues, null, 2));
}
return result.value;
}
This concise function can accept inputs from any spec-compliant schema library.
import * as z from 'zod';
import * as v from 'valibot';
import {type} from 'arktype';
const zodResult = await standardValidate(z.string(), 'hello');
const valibotResult = await standardValidate(v.string(), 'hello');
const arktypeResult = await standardValidate(type('string'), 'hello');
These are the most frequently asked questions about Standard Schema. If your question is not listed, feel free to create an issue.
No. The @standard-schema/spec
package is completely optional. You can just copy and paste the types into your project. We guarantee no breaking changes without a major version bump.
If you don't mind additional dependencies, you can add @standard-schema/spec
as a dependency and consume it with import type
. The @standard-schema/spec
package contains no runtime code and only exports types.
Despite being types-only, you should not install @standard-schema/spec
as a dev dependency. By accepting Standard Schemas as part of your public API, the Standard Schema interface becomes a part of your library's public API. As such, it must be available whenever/wherever your library gets installed, even in production installs. For this to happen, it must be installed as a regular dependency.
The goal of prefixing the key with ~
is to both avoid conflicts with existing API surfaces and to de-prioritize these keys in auto-complete. The ~
character is one of the few ASCII characters that occurs after A-Za-z0-9
lexicographically, so VS Code puts these suggestions at the bottom of the list.
In TypeScript, using a plain Symbol
inline as a key always collapses to a simple symbol
type. This would cause conflicts with other schema properties that use symbols.
const object = {
[Symbol.for('~output')]: 'some data',
};
// { [k: symbol]: string }
Unique symbols can also be declared in a "nominal" way that won't collapse. In this case the symbol key is sorted alphabetically in autocomplete according to the symbol's variable name.
Thus, these symbol keys don't get sorted to the bottom of the autocomplete list, unlike tilde-prefixed string keys.
The ~validate
function might return a synchronous value or a Promise
. If you only accept synchronous validation, you can simply throw an error if the returned value is an instance of Promise
. Libraries are encouraged to preferentially use synchronous validation whenever possible.
import type {StandardSchemaV1} from '@standard-schema/spec';
function validateInput(schema: StandardSchemaV1, data: unknown) {
const result = schema['~standard'].validate(data);
if (result instanceof Promise) {
throw new TypeError('Schema validation must be synchronous');
}
// ...
}