Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@asyncapi/specs
Advanced tools
This is a mono repository, which provides all the JSON Schema documents for validating AsyncAPI documents.
If you decide to validate AsyncAPI documents only with the JSON Schema files provided in this repo, your AsyncAPI documents will not be properly validated. It's recommended to use AsyncAPI JavaScript Parser that uses the AsyncAPI JSON Schema files for validation but also implements additional custom validations.
The following additional custom validations need to be provided:
securitySchemes
definition in components
with the same name.securitySchemes
is an empty array when the security type requires it.servers
property are declared in the top-level servers
object.At the moment, AsyncAPI JavaScript parser do not cover all validation cases yet All test cases and parsers coverage can be found here
npm install @asyncapi/specs
// OR by Yarn
yarn add @asyncapi/specs
go get github.com/asyncapi/spec-json-schemas/v2
Grab a specific AsyncAPI version:
const asyncapi = require('@asyncapi/specs/schemas/2.0.0');
// Do something with the schema.
Get a list of supported 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.
Note The main export of the package provides only supported versions of AsyncAPI (newer or equal to
2.0.0
). To use older ones (e.g.1.2.0
) please import an absolute path like@asyncapi/specs/schemas/1.2.0
;
Grab a specific AsyncAPI version:
import "github.com/asyncapi/spec_json_schemas/v4"
func Do() {
schema, err := spec_json_schemas.Get("1.1.0")
if err != nil {
panic(err)
}
// Do something with the schema
}
If you are currently using version 2, check out migration guideline to version 3. If you are currently using version 3, check out migration guideline to version 4.
This is the current project structure explained:
Changes should not be done manually to the schemas in ./schemas, but instead be done in their individual definitions located in ./definitions.
These definitions are automatically bundled together on new releases through the npm script prepublishOnly
, which ensures the project is build. This is where the bundler is called.
For example, for 2.2.0, the bundler starts with the asyncapi.json file and recursively goes through all references ($ref
) to create the appropriate bundled version.
To create a new version, simply run the following command:
npm run startNewVersion --new-version=x.x.x
Where x.x.x
is the new version you want to create.
The manual process of creating a new version is to:
Duplicate the latest version (y.y.y
) under definitions (so we have the correct base to make changes from).
Rename the folder to the new version (x.x.x
).
Search and replace in the new duplicated folder for y.y.y
and replace it with x.x.x
.
Edit the index.js file adding a new line with the new version. I.e. '2.5.0': require('./schemas/2.5.0.json'),
.
Edit the index.d.ts file adding a new line with the types for the new version. I.e. '2.5.0': JSONSchema7,
.
Edit the schemas/all.schema-store.json file adding a new entry under the oneOf
keyword with the new version. I.e.:
{
"allOf":[
{
"properties":{
"asyncapi":{
"const":"2.5.0"
}
}
},
{
"$ref":"http://asyncapi.com/schema-store/2.5.0.json"
}
]
}
Whenever a Breaking Change is introduced, the following steps should be taken in Go package:
go.mod
file, and increase the version package suffix in the module name. For example, if the current version is v2.0.0
, and you are releasing v3.0.0
, the module name should be github.com/asyncapi/spec-json-schemas/v3
.FAQs
AsyncAPI schema versions
The npm package @asyncapi/specs receives a total of 583,973 weekly downloads. As such, @asyncapi/specs popularity was classified as popular.
We found that @asyncapi/specs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.