@zeit/schemas

2.35.0 • Public • Published

Vercel Schemas

Schemas used across many Vercel packages to validating config files, requests to APIs, and more.

Why?

  • Keep schemas used across Vercel projects in sync
  • We use .js instead of .json because parsing JSON takes longer

Usage

To get started, pick one of the schemas in this repository and load it:

const schema = require('@zeit/schemas/deployment/config');

Next, set up AJV (the validator) and run the schema through it:

const AJV = require('ajv');

const ajv = new AJV({ allErrors: true });
const isValid = ajv.validate(schema, <object-to-validate>);

if (!isValid) {
	console.error(`The following entries are wrong: ${JSON.stringify(ajv.errors)}`);
}

That is all! 🎉

Contributing

We are currently not accepting external contributions for this repository.

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i @zeit/schemas

    Weekly Downloads

    1,221,721

    Version

    2.35.0

    License

    MIT

    Unpacked Size

    34 kB

    Total Files

    15

    Last publish

    Collaborators

    • gdborton
    • matheuss
    • matt.straka
    • nick.tracey
    • zeit-bot
    • vercel-release-bot