# openapi-response-validator

> Validate a response according to an openapi schema.

Latest version **12.1.3** (published 2023-05-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install openapi-response-validator
pnpm add openapi-response-validator
yarn add openapi-response-validator
bun add openapi-response-validator
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 12.1.3 |
| Published | 2023-05-24 |
| First published | 2018-06-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 44.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 921 |
| Author | Joseph Spencer |
| Maintainers | jsdevel |
| Keywords | openapi, validation, jsonschema, response |

## Links

- npm: https://www.npmjs.com/package/openapi-response-validator
- Repository: https://github.com/kogosoftwarellc/open-api/tree/master/packages/openapi-response-validator
- Homepage: https://github.com/kogosoftwarellc/open-api/tree/master/packages/openapi-response-validator#readme
- Issues: https://github.com/kogosoftwarellc/open-api/issues
- npm.io page: https://npm.io/package/openapi-response-validator

## Dependencies (2)

- [ajv](https://npm.io/package/ajv.md) ^8.4.0
- [openapi-types](https://npm.io/package/openapi-types.md) ^12.1.3

## Alternatives

- [@regle/core](https://npm.io/package/@regle/core.md) — 47.0K weekly downloads
- [typeof-arguments](https://npm.io/package/typeof-arguments.md) — 12.5K weekly downloads
- [@lokalise/projects-engine-contracts](https://npm.io/package/@lokalise/projects-engine-contracts.md) — 978 weekly downloads
- [@osjwnpm/nam-laboriosam-quibusdam](https://npm.io/package/@osjwnpm/nam-laboriosam-quibusdam.md) — 70 weekly downloads
- [@oridune/validator](https://npm.io/package/@oridune/validator.md) — 16 weekly downloads

## Recent versions

- 12.1.3 (latest) — 2023-05-24
- 12.1.2 — 2023-05-24
- 12.1.1 — 2023-05-20
- 12.1.0 — 2022-12-09
- 12.0.2 — 2022-08-31
- 12.0.0 — 2022-06-03
- 11.1.0 — 2022-06-03
- 11.0.1 — 2022-05-16
- 11.0.0 — 2022-04-13
- 10.0.0 — 2021-12-02
- 9.3.1 — 2021-11-12
- 9.3.0 — 2021-08-30
- 9.2.0 — 2021-08-20
- 9.1.0 — 2021-07-06
- 9.0.3 — 2021-06-01
- … 26 more at https://npm.io/package/openapi-response-validator/versions

## README

# openapi-response-validator [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Coveralls Status][coveralls-image]][coveralls-url]
> Validate a response according to an openapi schema.

## Highlights

* Performant.
* Extensively tested.
* Small footprint.
* Leverages [jsonschema](https://www.npmjs.com/package/jsonschema).
* Supports `$ref` in response schemas i.e. `#/definitions/SomeType`.

## Example

See `./test/data-driven/*.js` for more examples.

```javascript
var OpenAPIResponseValidator = require('openapi-response-validator');
var responseValidator = new OpenAPIResponseValidator({
  responses: {
    200: {
      description: 'We found what you were looking for.',
      schema: {
        $ref: '#/definitions/ResourceResponse'
      }
    },
    default: {
      description: 'Something happened...',
      schema: {
        $ref: '#/definitions/SomeErrorResponse'
      }
    }
  },
  definitions: {
    ResourceResponse: {
      type: 'object',
      properties: {
        id: {
          type: 'integer'
        },
        name: {
          type: 'string'
        }
      },
      required: ['id', 'name']
    },
    SomeErrorResponse: {
      type: 'object',
      properties: {
        errorCode: {
          type: 'string'
        },
        message: {
          type: 'string'
        }
      }
    }
  }
});

var someResource = {};
var validationError = responseValidator.validateResponse(200, someResource);

/*
  Validation errors look like this (except for objects in the errors array which
  may be overridden with errorTransformer):
  {
    status: 500,
    message: 'The response was not valid.',
    errors: [
      {
        path: 'foo',
        errorCode: 'type.openapi.responseValidation',
        message: is not of a type(s) string'
      }
    ]
  }
*/
```

## API

### OpenapiResponseValidator(args)

#### args

|Type|Required|Default Value|Description|
|----|--------|-------------|-----------|
|Object|Y|N/A|Arguments to configure the middleware.|

#### args.loggingKey

|Type|Required|Default Value|Description|
|----|--------|-------------|-----------|
|String|N|''|A prefix to use with constructor errors and logging messages.|

Keys may be any HTTP status code or `default` (for all HTTP status codes).  See
http://swagger.io/specification/#responsesObject.

#### args.responses

|Type|Required|Default Value|Description|
|----|--------|-------------|-----------|
|Object|Y|N/A|A key value pair of response definitions.  At least one response definition is to be provided.|

Keys may be any HTTP status code or `default` (for all HTTP status codes).  See
http://swagger.io/specification/#responsesObject.

#### args.definitions

|Type|Required|Default Value|Description|
|----|--------|-------------|-----------|
|Object|N|N/A|A key value pair of type definitions|

This object is used to support `$ref` in your responses

#### args.errorTransformer

|Type|Required|Default Value|Description|
|----|--------|-------------|-----------|
|Function|N|toOpenapiValidationError (see the source)|A function that receives an error and returns a mapped version of the error.|

This function is passed 2 arguments.

```
  errorTransformer: function(openapiError, ajvError) {
    return {
      message: openapiError.message
    };
  }
```

See the error format in [ajv](https://www.npmjs.com/package/ajv#validation-errors) for
`ajvError`.  `openapiError`s have the following properties:

* `errorCode` - A jsonschema error suffixed with `.openapi.responseValidation`.
failed.
* `message` - A detailed message as to why validation failed.
* `path` - The property of the response body that failed validation.

#### args.customFormats

|Type|Required|Default Value|Description|
|----|--------|-------------|-----------|
|Object|N|null|An object of custom formats.|

Each key is the name of the format to be used with the `format` keyword.  Each value
is a function that accepts an input and returns a boolean value.

See Custom Formats in [jsonschema](https://github.com/tdegrunt/jsonschema#custom-formats).

## LICENSE
```
The MIT License (MIT)

Copyright (c) 2018 Kogo Software LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```

[downloads-image]: http://img.shields.io/npm/dm/openapi-response-validator.svg
[npm-url]: https://npmjs.org/package/openapi-response-validator
[npm-image]: http://img.shields.io/npm/v/openapi-response-validator.svg

[travis-url]: https://travis-ci.org/kogosoftwarellc/open-api
[travis-image]: https://api.travis-ci.org/kogosoftwarellc/open-api.svg?branch=master

[coveralls-url]: https://coveralls.io/github/kogosoftwarellc/open-api?branch=main
[coveralls-image]: https://coveralls.io/repos/github/kogosoftwarellc/open-api/badge.svg?branch=main

---
_Source: https://npm.io/package/openapi-response-validator · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
