0.99.2 • Published 5 days ago

@swagger-api/apidom-parser-adapter-openapi-json-2 v0.99.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
5 days ago

@swagger-api/apidom-parser-adapter-openapi-json-2

@swagger-api/apidom-parser-adapter-openapi-json-2 is a parser adapter for the OpenAPI 2.0 specification in JSON format. Under the hood this adapter uses apidom-parser-adapter-json to parse a source string into generic ApiDOM in base ApiDOM namespace which is then refracted with OpenAPI 2.0 Refractors.

Installation

After prerequisites for installing this package are satisfied, you can install it via npm CLI by running the following command:

 $ npm install @swagger-api/apidom-parser-adapter-openapi-json-2

Parser adapter API

This parser adapter is fully compatible with parser adapter interface required by @swagger-api/apidom-parser and implements all required properties.

mediaTypes

Defines list of media types that this parser adapter recognizes.

[
  'application/vnd.oai.openapi;version=2.0',
  'application/vnd.oai.openapi+json;version=2.0',
]

detect

Detection is based on a regular expression matching required OpenAPI 2.0 specification symbols in JSON format.

namespace

This adapter exposes an instance of OpenAPI 2.0 ApiDOM namespace.

parse

parse function consumes various options as a second argument. Here is a list of these options:

OptionTypeDefaultDescription
specObjObjectSpecification ObjectThis specification object drives the JSON AST transformation to OpenAPI 2.0 ApiDOM namespace.
sourceMapBooleanfalseIndicate whether to generate source maps.
refractorOptsObject{}Refractor options are passed to refractors during refracting phase.

All unrecognized arbitrary options will be ignored.

Usage

This parser adapter can be used directly or indirectly via @swagger-api/apidom-parser.

Direct usage

During direct usage you don't need to provide mediaType as the parse function is already pre-bound with supported media types.

import { parse, detect } from '@swagger-api/apidom-parser-adapter-openapi-json-2';

// detecting
await detect('{"swagger": "2.0"}'); // => true
await detect('test'); // => false

// parsing
const parseResult = await parse('{"swagger": "2.0"}', { sourceMap: true });

Indirect usage

You can omit the mediaType option here, but please read Word on detect vs mediaTypes before you do so.

import ApiDOMParser from '@swagger-api/apidom-parser';
import * as openApiJsonAdapter from '@swagger-api/apidom-parser-adapter-openapi-json-2';

const parser = new ApiDOMParser();

parser.use(openApiJsonAdapter);

const parseResult = await parser.parse('{"swagger": "2.0"}', { mediaType: openApiJsonAdapter.mediaTypes.latest('json') });
0.99.2

5 days ago

0.99.1

1 month ago

0.99.0

1 month ago

0.98.0

2 months ago

0.97.0

2 months ago

0.96.0

2 months ago

0.95.0

3 months ago

0.94.0

3 months ago

0.93.0

3 months ago

0.92.0

4 months ago

0.91.0

4 months ago

0.90.0

4 months ago

0.89.0

5 months ago

0.88.0

5 months ago

0.87.0

5 months ago

0.86.0

5 months ago

0.84.0

5 months ago

0.85.0

5 months ago

0.83.0

6 months ago

0.82.2

6 months ago

0.82.1

6 months ago

0.82.0

6 months ago

0.81.0

6 months ago