项目作者: ajv-validator

项目描述 :
JSON Schema format validation for Ajv v7+
高级语言: TypeScript
项目地址: git://github.com/ajv-validator/ajv-formats.git
创建时间: 2020-07-20T10:21:48Z
项目社区:https://github.com/ajv-validator/ajv-formats

开源协议:MIT License

下载


ajv-formats

JSON Schema formats for Ajv

Build Status
npm
Gitter
GitHub Sponsors

Usage

  1. // ESM/TypeScript import
  2. import Ajv from "ajv"
  3. import addFormats from "ajv-formats"
  4. // Node.js require:
  5. const Ajv = require("ajv")
  6. const addFormats = require("ajv-formats")
  7. const ajv = new Ajv()
  8. addFormats(ajv)

Formats

The package defines these formats:

See regular expressions used for format validation and the sources that were used in formats.ts.

Please note: JSON Schema draft-07 also defines formats iri, iri-reference, idn-hostname and idn-email for URLs, hostnames and emails with international characters. These formats are available in ajv-formats-draft2019 plugin.

Keywords to compare values: formatMaximum / formatMinimum and formatExclusiveMaximum / formatExclusiveMinimum

These keywords allow to define minimum/maximum constraints when the format keyword defines ordering (compare function in format definition).

These keywords are added to ajv instance when ajv-formats is used without options or with option keywords: true.

These keywords apply only to strings. If the data is not a string, the validation succeeds.

The value of keywords formatMaximum/formatMinimum and formatExclusiveMaximum/formatExclusiveMinimum should be a string or $data reference. This value is the maximum (minimum) allowed value for the data to be valid as determined by format keyword. If format keyword is not present schema compilation will throw exception.

When these keyword are added, they also add comparison functions to formats "date", "time" and "date-time". User-defined formats also can have comparison functions. See addFormat method.

  1. require("ajv-formats")(ajv)
  2. const schema = {
  3. type: "string",
  4. format: "date",
  5. formatMinimum: "2016-02-06",
  6. formatExclusiveMaximum: "2016-12-27",
  7. }
  8. const validDataList = ["2016-02-06", "2016-12-26"]
  9. const invalidDataList = ["2016-02-05", "2016-12-27", "abc"]

Options

Options can be passed via the second parameter. Options value can be

  1. The list of format names that will be added to ajv instance:
  1. addFormats(ajv, ["date", "time"])

Please note: when ajv encounters an undefined format it throws exception (unless ajv instance was configured with strict: false option). To allow specific undefined formats they have to be passed to ajv instance via formats option with true value:

  1. const ajv = new Ajv({formats: {date: true, time: true}}) // to ignore "date" and "time" formats in schemas.
  1. Format validation mode (default is "full") with optional list of format names and keywords option to add additional format comparison keywords:
  1. addFormats(ajv, {mode: "fast"})

or

  1. addFormats(ajv, {mode: "fast", formats: ["date", "time"], keywords: true})

In "fast" mode the following formats are simplified: "date", "time", "date-time", "iso-time", "iso-date-time", "uri", "uri-reference", "email". For example, "date", "time" and "date-time" do not validate ranges in "fast" mode, only string structure, and other formats have simplified regular expressions.

Tests

  1. npm install
  2. git submodule update --init
  3. npm test

License

MIT