Socket
Socket
Sign inDemoInstall

@segment/ajv-human-errors

Package Overview
Dependencies
Maintainers
189
Versions
238
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@segment/ajv-human-errors

Human-readable error messages for Ajv (Another JSON Schema Validator).


Version published
Weekly downloads
96K
increased by1.7%
Maintainers
189
Weekly downloads
 
Created
Source

ajv-human-errors

Human-readable error messages for Ajv (Another JSON Schema Validator).

By default, Ajv error messages leave a little bit to be desired. ajv-human-errors provides an aggregate Error object that holds Ajv validation errors that are more easily readable by humans. For example, ajv-human-errors changes "should NOT have additional properties" to "The root value has an unexpected property, c, which is not in the list of allowed properties (a, d)."

You can also override the error message entirely using the "errorMessage" schema keyword, like you can with ajv-errors (see "Schema Options").

The following Ajv options must be set to true for ajv-human-errors to work with the errors returned by Ajv:

  • allErrors
  • verbose
  • jsonPointers

The following features of JSON Schema are not yet implemented (but will return their "raw" Ajv error messages):

  • patternProperties
  • allOf
  • oneOf
  • Nested array schemas
  • const
  • if/then/else
  • contentEncoding/contentMediaType

Install

$ npm install @segment/ajv-human-error

Usage

const Ajv = require('ajv')
const { AggregateAjvError } = require('@segment/ajv-human-errors')

const ajv = new Ajv({
  allErrors: true,
  verbose: true,
  jsonPointers: true
})

ajv.validate({ title: 'Bag of Bytes', type: 'string' }, 1234)

const err = new AggregateAjvError(ajv.errors)
console.log(err.message)
// 'Bag of Bytes should be a string but it was a number.'
console.log([...err].map((e) => e.message))
// ['Bag of Bytes should be a string but it was a number.']

The AggregateAjvError object can be passed to JSON.stringify():

[
  {
    "message": "The value at .arr should be unique but elements 1 and 4 are the same.",
    "path": "$.arr",
    "pointer": "/arr",
    "data": [0, 1, 2, 0, 1]
  }
  // ...
]

API

AggregateAjvError is an Iterable that yields AjvError errors:

const { AggregateAjvError } = require('@segment/ajv-human-errors')

const err = new AggregateAjvError(ajv.errors)

const messages = [...err].map((e) => e.message)
// or
const messages = []
for (const e of err) {
  messages.push(e.message)
}

Each AjvError instance has the following properties:

  • pointer: JSON Pointer to the field that this error refers to.

  • path: JSON Path to the field that this error refers to.

  • message: Human-readable error message.

  • original: (Only if includeOriginalError option is set) Original Ajv error object.

  • data: (Only if includeData option is set) Value that value that failed validation. Useful for showing users what, exactly, was wrong without embedding entire values in the error message.

These fields are also available in the JSON form:

const { AggregateAjvError } = require('@segment/ajv-human-errors')

const err = new AggregateAjvError(ajv.errors)

console.log([...err][0].toJSON())
// {
//   message: 'The value at /arr should be unique but elements 1 and 4 are the same.',
//   path: '$.arr',
//   pointer: '/arr',
//   original: { ... },
//   data: [0, 1, 2, 0, 1]
// }

Options

The AggregateAjvError constructor accepts the following options:

  • fieldLabels (default: 'title') Change the labels used for fields. Allowed values:

    • 'js' JavaScript object accessor notation. Example: "The value at .for.bar should be a number but it was a string."

    • 'jsonPath' JSON Path notation. Example: "The value at $.foo.bar should be a number but it was a string."

    • 'jsonPointer' JSON Pointer notation. Example: "The value at /foo/bar should be a number but it was a string."

    • 'title' Uses the title property of the schema rule that failed validation. If your schema is:

      {
        "title": "Bag of values",
        "type": "object"
      }
      

      Then the resulting error message would look like: "Bag of values should be an object but it was an array."

  • includeOriginalError (default: false) Include the original Ajv error object on the data property of each error in the AggregateAjvError instance:

    const err = new AggregateAjvError(ajv.errors, { includeOriginalError: true })
    [...err].forEach(e => console.log(e.original))
    // {
    //   params: { ... },
    //   parentSchema: { ... },
    //   schema: '...',
    //   schemaPath: '...',
    //   ...
    // }
    
  • includeData (default: false) Include the value of the field that failed validation on the data property of each error in the AggregateAjvError instance.

    const err = new AggregateAjvError(ajv.errors, { includeOriginalError: true })
    [...err].forEach(e => console.log(e.data))
    // 'foobar'
    

Schema Options

If you want to override an error message entirely, you can set an "errorMessage" keyword in your JSON Schema. For example, this schema:

{
  "type": "string",
  "errorMessage": "should be a bag of bytes"
}

Returns this error message when validating a non-string object:

'The root value should be a bag of bytes.'

FAQs

Package last updated on 10 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc