
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@swagger-api/apidom-parser-adapter-arazzo-yaml-1
Advanced tools
Parser adapter for parsing YAML documents into Arazzo 1.x.y namespace.
@swagger-api/apidom-parser-adapter-arazzo-yaml-1-0
is a parser adapter for the Arazzo 1.0.1 specification in YAML format.
Under the hood this adapter uses apidom-parser-adapter-yaml-1-2
to parse a source string into generic ApiDOM in base ApiDOM namespace
which is then refracted with Arazzo 1.x.y Refractors.
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-arazzo-yaml-1
This parser adapter is fully compatible with parser adapter interface required by @swagger-api/apidom-parser and implements all required properties.
Defines list of media types that this parser adapter recognizes.
[
'application/vnd.oai.workflows;version=1.0.0',
'application/vnd.oai.workflows+yaml;version=1.0.0',
'application/vnd.oai.workflows;version=1.0.1',
'application/vnd.oai.workflows+yaml;version=1.0.1',
]
Detection is based on a regular expression matching required Arazzo 1.0.0 specification symbols in YAML format.
This adapter exposes an instance of Arazzo 1.x.y ApiDOM namespace.
parse
function consumes various options as a second argument. Here is a list of these options:
Option | Type | Default | Description |
---|---|---|---|
specObj | Object | Specification Object | This specification object drives the YAML AST transformation to Arazzo 1.x.y ApiDOM namespace. |
sourceMap | Boolean | false | Indicate whether to generate source maps. |
refractorOpts | Object | {} | Refractor options are passed to refractors during refracting phase. |
All unrecognized arbitrary options will be ignored.
This parser adapter can be used directly or indirectly via @swagger-api/apidom-parser.
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-arazzo-yaml-1';
// detecting
await detect('arazzo: 1.0.0'); // => true
await detect('test'); // => false
// parsing
const parseResult = await parse('arazzo: 1.0.0', { sourceMap: true });
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 arazzoYamlAdapter from '@swagger-api/apidom-parser-adapter-arazzo-yaml-1';
const parser = new ApiDOMParser();
parser.use(arazzoYamlAdapter);
const parseResult = await parser.parse('arazzo: 1.0.0', { mediaType: arazzoYamlAdapter.mediaTypes.latest('yaml') });
1.0.0-beta.49 (2025-09-22)
FAQs
Parser adapter for parsing YAML documents into Arazzo 1.x.y namespace.
The npm package @swagger-api/apidom-parser-adapter-arazzo-yaml-1 receives a total of 347,911 weekly downloads. As such, @swagger-api/apidom-parser-adapter-arazzo-yaml-1 popularity was classified as popular.
We found that @swagger-api/apidom-parser-adapter-arazzo-yaml-1 demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.