raml-js-parser-2
raml-js-parser-2 copied to clipboard
(deprecated)
Followed by https://github.com/raml-org/raml-spec/blob/master/versions/raml-10/raml-10.md/#settings I created custom JWT security scheme and want to apply it with some overridden parameters as described in https://github.com/raml-org/raml-spec/blob/master/versions/raml-10/raml-10.md/#applying-security-schemes Take this RAML as example: ```yaml #%RAML 1.0...
below link has all API interface but documentation and their usage of interface is not clear enough **https://raml-org.github.io/raml-js-parser-2/interfaces/_src_raml1_artifacts_raml10parserapi_.api.html#version** please provide some documentation to use the interface
When I include a .json file for define a type, parser includes schemaPath attribute with its path. But for .yaml files, parser doesn't keep file path. Could you please do...
The description of the top level `schemas` key says that it is a deprecated alias for the new `types` key. This means that I would expect the `types` key to...
Today I stumbled on an issue on `array` type parsing. While using the `raml2html` lib that depends on the parser as well as the `datatype-expansion`, I have discovered that the...
Parsing the given RAML data using the following lines both methods takes around 30 seconds each. ``` const parsedData = parser.parseRAMLSync(data, RAMLImporter._options(options)); //30 seconds if (parsedData.name === 'Error') { reject(error);...
I want to expand json schema definitions with refs similarly to what have been done in 0.8 parser with `dereferenceSchemas` flag. Is there a counterpart in 1.0 parser? I tried...
Currently when parsing a method request body or a response body, it appears that the body object does not inherit properties or examples or from the parent type. Given the...