1.0.0 • Published 4 years ago

@fortellis/spec-linter v1.0.0

Weekly downloads
3
License
ISC
Repository
-
Last release
4 years ago

Fortellis Specification Validator

The Fortellis specification validator can be used to ensure that API specifications conform to the Fortellis rules and standards. More information on the Fortellis rules and standards can be found here.

Installation

npm i @fortellis/spec-validator

Usage

The spec validator exposes two functions for linting api specifications, one for yaml strings and one for parsed JSON objects. Both return an array of resulting linting notices in the spec. A valid spec will return an empty array.

JSON Objects

const { lint } = require('@fortellis/spec-validator');

const mySpec = {
  // ...
};
const results = lint(mySpec);

Yaml String

const fs = require('fs');
const { lintRaw } = require('@fortellis/spec-validator');

const mySpec = fs.readFileSync('./my-spec.yaml', 'utf8');
const results = lintRaw(mySpec);

Options

Both functions take a second argument to supply an options object. The options object will allow you to partially customize the behavior of the linter. The following are available items in the options object:

KeyTypeDescriptionDefault
rulesetsobjectDefine the rulesets used in the linter. Each ruleset is a key in this object.{}
severityenum (number)Determine the level of linting notice that should be returned in the results array (error (0), warn (1), info (2), hint (3)). These severity levels are exported as Severity from @fortellis/spec-validator.0
verbosebooleanEnable/Disable logging from the linterfalse

Results

The results array that shows you all of the linter notices for the passed in spec will contain objects will a bunch of information about the specific notice and where the notice is located in the spec.

KeyTypeDescription
codestringWhere the notice originated from.
messagestringThe human readable description of the cause of the notice.
severitynumberThe severity level of the notice (error (0), warn (1), info (2), hint (3)).
patharrayAn array of keys denoting the location of the notice within the spec.
rangeobjectContains the start and end objects which denote the exact line and character location of the notice within the original spec.

Example

{
  code: 'parser',
  message: 'Mapping key must be a string scalar rather than number',
  severity: 0,
  path: [
    'paths',
    '/my-endpoint',
    'get',
    'responses',
    '200'
  ],
  range: {
    start: {
      line: 44,
      character: 8
    },
    end: {
      line: 44,
      character: 11
    }
  }
}