bali182 / spec-json-schemas

AsyncAPI schema versions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm npm

AsyncAPI

This package provides all the versions of the AsyncAPI schema.

Installation

npm install @asyncapi/specs

Usage

Grab a specific AsyncAPI version:

const asyncapi = require('@asyncapi/specs/schemas/2.0.0');

// Do something with the schema.

Get a list of versions:

const versions = require('@asyncapi/specs');

console.log(versions);
// Outputs:
//
// {
//   '1.0.0': [Object],
//   '1.1.0': [Object]
// }

const asyncapi = versions['1.1.0'];

// Do something with the schema.

About

AsyncAPI schema versions

License:Apache License 2.0


Languages

Language:Go 58.4%Language:JavaScript 41.6%