[[toc]]
Ajv supports generating standalone validation functions from JSON Schemas at compile/build time. These functions can then be used during runtime to do validation without initialising Ajv. It is useful for several reasons:
- to reduce the browser bundle size - Ajv is not included in the bundle (although if you have a large number of schemas the bundle can become bigger - when the total size of generated validation code is bigger than Ajv code).
- to reduce the start-up time - the validation and compilation of schemas will happen during build time.
- to avoid dynamic code evaluation with Function constructor (used for schema compilation) - when it is prohibited by the browser page Content Security Policy.
This functionality in Ajv v7 supersedes the deprecated package ajv-pack that can be used with Ajv v6. All schemas, including those with recursive references, formats and user-defined keywords are supported, with few limitations.
The first step is to generate the standalone validation function code. This is done at compile/build time of your project and the output is a generated JS file. The second step is to use the generated JS validation function.
There are two methods to generate the code, using either the Ajv CLI or the Ajv JS library. There are also a few different options that can be passed when generating code. Below is just a highlight of a few options:
- Set the
code.source
(JS) value to true or use thecompile
(CLI) command to generate standalone code. - The standalone code can be generated in either ES5 or ES6, it defaults to ES6. Set the
code.es5
(JS) value to true or pass the--code-es5
(CLI) flag to true if you want ES5 code. - The standalone code can be generated in either CJS (module.export & require) or ESM (exports & import), it defaults to CJS. Set the
code.esm
(JS) value to true or pass the--code-esm
(CLI) flag if you want ESM exported code.
Note that the way the function is exported, differs if you are exporting a single or multiple schemas. See examples below.
In most cases you would use this functionality via ajv-cli (>= 4.0.0) to generate the standalone code that exports the validation function. See ajv-cli docs and the cli options for additional information.
npm install -g ajv-cli
ajv compile -s schema.json -o validate_schema.js
Install the package, version >= v7.0.0:
npm install ajv
const fs = require("fs")
const path = require("path")
const Ajv = require("ajv")
const standaloneCode = require("ajv/dist/standalone").default
const schema = {
$id: "https://example.com/bar.json",
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
bar: {type: "string"},
},
"required": ["bar"]
}
// The generated code will have a default export:
// `module.exports = <validateFunctionCode>;module.exports.default = <validateFunctionCode>;`
const ajv = new Ajv({code: {source: true}})
const validate = ajv.compile(schema)
let moduleCode = standaloneCode(ajv, validate)
// Now you can write the module code to file
fs.writeFileSync(path.join(__dirname, "../consume/validate-cjs.js"), moduleCode)
const fs = require("fs")
const path = require("path")
const Ajv = require("ajv")
const standaloneCode = require("ajv/dist/standalone").default
const schemaFoo = {
$id: "#/definitions/Foo",
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
foo: {"$ref": "#/definitions/Bar"}
}
}
const schemaBar = {
$id: "#/definitions/Bar",
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
bar: {type: "string"},
},
"required": ["bar"]
}
// For CJS, it generates an exports array, will generate
// `exports["#/definitions/Foo"] = ...;exports["#/definitions/Bar"] = ... ;`
const ajv = new Ajv({schemas: [schemaFoo, schemaBar], code: {source: true}})
let moduleCode = standaloneCode(ajv)
// Now you can write the module code to file
fs.writeFileSync(path.join(__dirname, "../consume/validate-cjs.js"), moduleCode)
const fs = require("fs")
const path = require("path")
const Ajv = require("ajv")
const standaloneCode = require("ajv/dist/standalone").default
const schemaFoo = {
$id: "#/definitions/Foo",
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
foo: {"$ref": "#/definitions/Bar"}
}
}
const schemaBar = {
$id: "#/definitions/Bar",
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
bar: {type: "string"},
},
"required": ["bar"]
}
// For ESM, the export name needs to be a valid export name, it can not be `export const #/definitions/Foo = ...;` so we
// need to provide a mapping between a valid name and the $id field. Below will generate
// `export const Foo = ...;export const Bar = ...;`
// This mapping would not have been needed if the `$ids` was just `Bar` and `Foo` instead of `#/definitions/Foo`
// and `#/definitions/Bar` respectfully
const ajv = new Ajv({schemas: [schemaFoo, schemaBar], code: {source: true, esm: true}})
let moduleCode = standaloneCode(ajv, {
"Foo": "#/definitions/Foo",
"Bar": "#/definitions/Bar"
})
// Now you can write the module code to file
fs.writeFileSync(path.join(__dirname, "../consume/validate-esm.mjs"), moduleCode)
::: warning ESM name mapping
The ESM version only requires the mapping if the ids are not valid export names. If the $ids were just the
Foo
and Bar
instead of #/definitions/Foo
and #/definitions/Bar
then the mapping would not be needed.
:::
const Bar = require('./validate-cjs')
const barPass = {
bar: "something"
}
const barFail = {
// bar: "something" // <= empty/omitted property that is required
}
let validateBar = Bar
if (!validateBar(barPass))
console.log("ERRORS 1:", validateBar.errors) //Never reaches this because valid
if (!validateBar(barFail))
console.log("ERRORS 2:", validateBar.errors) //Errors array gets logged
const validations = require('./validate-cjs')
const fooPass = {
foo: {
bar: "something"
}
}
const fooFail = {
foo: {
// bar: "something" // <= empty/omitted property that is required
}
}
let validateFoo = validations["#/definitions/Foo"];
if (!validateFoo(fooPass))
console.log("ERRORS 1:", validateFoo.errors); //Never reaches this because valid
if (!validateFoo(fooFail))
console.log("ERRORS 2:", validateFoo.errors); //Errors array gets logged
import {Foo, Bar} from './validate-multiple-esm.mjs';
const fooPass = {
foo: {
bar: "something"
}
}
const fooFail = {
foo: {
// bar: "something" // bar: "something" <= empty properties
}
}
let validateFoo = Foo;
if (!validateFoo(fooPass))
console.log("ERRORS 1:", validateFoo.errors); //Never reaches here because valid
if (!validateFoo(fooFail))
console.log("ERRORS 2:", validateFoo.errors); //Errors array gets logged
One of the main reason for using the standalone mode is to start applications faster to avoid runtime schema compilation.
The standalone generated functions still has a dependency on the Ajv. Specifically on the code in the runtime folder of the package.
Completely isolated validation functions can be generated if desired (won't be for most use cases). Run the generated code through a bundler like ES Build to create completely isolated validation functions that can be imported/required without any dependency on Ajv. This is also not needed if your project is already using a bundler.
To support standalone code generation:
- Ajv option
code.source
must be set totrue
- only
code
andmacro
user-defined keywords are supported (see User defined keywords). - when
code
keywords define variables in shared scope usinggen.scopeValue
, they must providecode
property with the code snippet. See source code of pre-defined keywords for examples in vocabularies folder. - if formats are used in standalone code, ajv option
code.formats
should contain the code snippet that will evaluate to an object with all used format definitions - it can be a call torequire("...")
with the correct path (relative to the location of saved module):
import myFormats from "./my-formats"
import Ajv, {_} from "ajv"
const ajv = new Ajv({
formats: myFormats,
code: {
source: true,
formats: _`require("./my-formats")`,
},
})
If you only use formats from [ajv-formats](https://github.com/ajv-validator/ajv-formats) this option will be set by this package automatically.