
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
asyncapi-validation
Advanced tools
Message validation package for YAML and JSON AsyncAPI documents.
Message validation package for YAML and JSON AsyncAPI documents.
This package:
# NPM
npm install asyncapi-validation
# Yarn
yarn add asyncapi-validation
# PNPM
pnpm install asyncapi-validation
Promise.<ValidationFunction>
Parses an AsyncAPI schema from a file and returns a validation function.
Promise.<ValidationFunction>
Parses an AsyncAPI schema from a URL and returns a validation function.
Promise.<ValidationFunction>
Parses an AsyncAPI schema from a string and returns a validation function.
Promise.<ValidationFunction>
Parses an AsyncAPI schema from a file and returns a validation function.
Kind: global function
Returns: Promise.<ValidationFunction>
- A promise that resolves to the validation function.
Throws:
AsyncAPIParsingError
if the schema is not valid or has governance issues.Param | Type | Description |
---|---|---|
path | string | The path to the AsyncAPI schema file. |
Example
const validator = await asyncApiValidation.parseFromFile('path/to/schema.yaml');
validator('messageKey', { foo: 'bar' });
Promise.<ValidationFunction>
Parses an AsyncAPI schema from a URL and returns a validation function.
Kind: global function
Returns: Promise.<ValidationFunction>
- A promise that resolves to the validation function.
Throws:
AsyncAPIParsingError
if the schema is not valid or has governance issues.Param | Type | Description |
---|---|---|
url | string | The URL of the AsyncAPI schema. |
Example
const validator = await asyncApiValidation.fromUrl(
'https://example.org/schema.yaml'
);
validator('messageKey', { foo: 'bar' });
Promise.<ValidationFunction>
Parses an AsyncAPI schema from a string and returns a validation function.
Kind: global function
Returns: Promise.<ValidationFunction>
- A promise that resolves to the validation function.
Throws:
AsyncAPIParsingError
if the schema is not valid or has governance issues.Param | Type | Description |
---|---|---|
schema | string | The AsyncAPI schema as a string. |
Example
const validator = await asyncApiValidation.fromSchema('asyncapi: 2.0.0');
validator('messageKey', { foo: 'bar' });
ValidationFunction
Validates the provided AsyncAPI schema and returns a validation function.
Kind: global function
Returns: ValidationFunction
- The validation function.
Param | Type | Description |
---|---|---|
schema | ParseOutput | The parsed AsyncAPI schema. |
boolean
Validates the provided payload against the AsyncAPI schema.
Kind: inner method of validate
Returns: boolean
- true if the payload is valid.
Throws:
Error
if no messages are found for the given key.AsyncAPIValidationError
if the payload fails validation.Param | Type | Description |
---|---|---|
key | string | The key of the message to validate. |
payload | unknown | The payload to validate. |
Example
const validator = await asyncApiValidation.fromSchema('asyncapi: 2.0.0');
validator('messageKey', { foo: 'bar' });
Represents an error that occurs during the parsing of an AsyncAPI document.
Represents an error that occurs during the parsing of an AsyncAPI document.
Param | Type | Description |
---|---|---|
message | string | The error message. |
[errors] | Array.<Diagnostic> | Optional array of diagnostic errors associated with the parsing error. |
Represents an error that occurs during AsyncAPI validation.
Represents an error that occurs during AsyncAPI validation.
Param | Type | Description |
---|---|---|
message | string | The error message. |
key | string | The key associated with the error. |
[errors] | Array.<ErrorObject> | null | The array of validation error objects. |
FAQs
Message validation package for YAML and JSON AsyncAPI documents.
The npm package asyncapi-validation receives a total of 950 weekly downloads. As such, asyncapi-validation popularity was classified as not popular.
We found that asyncapi-validation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.