Zod to OpenAPI
[!IMPORTANT] For Zod v3 support, please use the v7.3.4 version. However keep in mind that we do not intend to actively support that version going forward Install with:
npm install @asteasolutions/[email protected]
A library that uses zod schemas to generate an Open API Swagger documentation.
We keep a changelog as part of the GitHub releases.
Purpose and quick example
We at Astea Solutions made this library because we use zod for validation in our APIs and are tired of the duplication to also support a separate OpenAPI definition that must be kept in sync. Using zod-to-openapi, we generate OpenAPI definitions directly from our zod schemas, thus having a single source of truth.
Simply put, it turns this:
const UserSchema = z
.object({
id: z.string().openapi({ example: '1212121' }),
name: z.string().openapi({ example: 'John Doe' }),
age: z.number().openapi({ example: 42 }),
})
.openapi('User');
registry.registerPath({
method: 'get',
path: '/users/{id}',
summary: 'Get a single user',
request: {
params: z.object({ id: z.string() }),
},
responses: {
200: {
description: 'Object with user data.',
content: {
'application/json': {
schema: UserSchema,
},
},
},
},
});
into this:
components:
schemas:
User:
type: object
properties:
id:
type: string
example: '1212121'
name:
type: string
example: John Doe
age:
type: number
example: 42
required:
- id
- name
- age
/users/{id}:
get:
summary: Get a single user
parameters:
- in: path
name: id
schema:
type: string
required: true
responses:
'200':
description: Object with user data
content:
application/json:
schema:
$ref: '#/components/schemas/User'
and you can still use UserSchema and the request.params object to validate the input of your API.
Usage
Installation
npm install @asteasolutions/zod-to-openapi
# or
yarn add @asteasolutions/zod-to-openapi
The openapi method
To keep openapi definitions natural, we add an openapi method to all Zod objects. Its idea is to provide a convenient way to provide OpenApi specific data.
It has three overloads:
.openapi({ [key]: value })- this way we can specify any OpenApi fields. For examplez.number().openapi({ example: 3 })would addexample: 3to the generated schema..openapi("")- this way we specify that the underlying zod schema should be "registered" i.e added intocomponents/schemaswith the provided ``.openapi("", { [key]: value })- this unites the two use cases above so that we can specify both a registration `` and additional metadata
For this to work, you need to call extendZodWithOpenApi once in your project.
This should be done only once in a common-entrypoint file of your project (for example an index.ts/app.ts). If you're using tree-shaking with Webpack, mark that file as having side-effects.
It can be bit tricky to achieve this in your codebase, because require is synchronous and import is a async.
Using zod's .meta
Starting from v8 (and zod v4) you can also use zod's .meta to provide metadata and we will read it accordingly.
With zod's new option for generating JSON schemas and maintaining registries we've added a pretty much seamless support for all metadata information coming from .meta calls as if that was metadata passed into .openapi.
So the following 2 schemas produce exactly the same results:
const schema = z
.string()
.openapi('Schema', { description: 'Name of the user', example: 'Test' });
const schema2 = z
.string()
.meta({ id: 'Schema2', description: 'Name of the user', example: 'Test' });
Note: This also means that you unless you are using some of our more complicated scenarios you could even generate a schema without using
extendZodWithOpenApiin your codebase and only rely on.metato provide additional metadata information and schema names (using theidproperty).
Scenarios that require using extendZodWithOpenApi and .openapi
- When extending registered schemas that are both registered and want the extended one to use
anyOfi.e:
const schema = z.object({ name: z.string() }).openapi('Schema');
const schema2 = schema.extend({ age: z.number() }).openapi('Schema2'); // this one would have anyOf and a reference to the first one
- Defining parameter metadata. So for example when doing:
registry.registerPath({
// ...
request: {
query: z.object({
name: z.string().openapi({
description: 'Schema level description',
param: { description: 'Param level description' },
}),
}),
},
});
the result would be:
"parameters": [
{
"schema": {
"type": "string",
"description": "Schema level description" // comes directly from description
},
"required": true,
"description": "Param level description", // comes from param.description
"name": "name",
"in": "query"
}
],
The basic idea
import { extendZodWithOpenApi } from '@asteasolutions/zod-to-openapi';
import { z } from 'zod';
extendZodWithOpenApi(z);
// We can now use `.openapi()` to specify OpenAPI metadata
z.string().openapi({ description: 'Some string' });
Example 1: Calling the openapi-extension using tsx
//zod-extend.ts
import { extendZodWithOpenApi } from '@asteasolutions/zod-to-openapi';
import { z } from 'zod';
extendZodWithOpenApi(z);
// package.json
"scripts": {
"start": "tsx --import ./zod-extend.ts ./index.ts",
Example 2 - require-syntax
import { extendZodWithOpenApi } from '@asteasolutions/zod-to-openapi';
import { z } from 'zod';
extendZodWithOpenApi(z);
const { startServer } = require('./server/start');
startServer();
The Registry
The OpenAPIRegistry is a utility that can be used to collect definitions which would later be passed to a OpenApiGeneratorV3 or OpenApiGeneratorV31 instance.
import {
OpenAPIRegistry,
OpenApiGeneratorV3,
} from '@asteasolutions/zod-to-openapi';
const registry = new OpenAPIRegistry();
// Register definitions here
const generator = new OpenApiGeneratorV3(registry.definitions);
return generator.generateComponents();
The Generator
There are three generators that can be used - OpenApiGeneratorV3, OpenApiGeneratorV31 and OpenApiGeneratorV32. They share the same interface but internally generate schemas that correctly follow the data format for the specific Open API version - 3.0.x, 3.1.x or 3.2.x. The Open API version affects how some components are generated.
OpenApiGeneratorV32 uses the same JSON Schema dialect as 3.1 (2020-12), so schemas are generated identically. It additionally accepts the document-structure fields that were added in 3.2 - see OpenAPI 3.2 support.
For example: changing the generator from OpenApiGeneratorV3 to OpenApiGeneratorV31 would result in following differences:
z.string().nullable().openapi({refId: 'name'});
# 3.1.0
# nullable is invalid in 3.1.0 but type arrays are invalid in previous versions
name:
type:
- 'string'
- 'null'
# 3.0.0
name:
type: 'string'
nullable: true
Both generators take a single argument in their constructors - an array of definitions - i.e results from the registry or regular zod schemas.
Th