raml2obj

WebJar for raml2obj

License

License

MIT
Categories

Categories

Github Development Tools Version Controls
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

github-com-raml2html-raml2obj
Last Version

Last Version

2.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

raml2obj
WebJar for raml2obj
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/raml2html/raml2obj

Download github-com-raml2html-raml2obj

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/github-com-raml2html-raml2obj/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>github-com-raml2html-raml2obj</artifactId>
    <version>2.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-raml2html-raml2obj/
implementation 'org.webjars.npm:github-com-raml2html-raml2obj:2.2.0'
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-raml2html-raml2obj/
implementation ("org.webjars.npm:github-com-raml2html-raml2obj:2.2.0")
'org.webjars.npm:github-com-raml2html-raml2obj:jar:2.2.0'
<dependency org="org.webjars.npm" name="github-com-raml2html-raml2obj" rev="2.2.0">
  <artifact name="github-com-raml2html-raml2obj" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='github-com-raml2html-raml2obj', version='2.2.0')
)
libraryDependencies += "org.webjars.npm" % "github-com-raml2html-raml2obj" % "2.2.0"
[org.webjars.npm/github-com-raml2html-raml2obj "2.2.0"]

Dependencies

compile (2)

Group / Artifact Type Version
org.webjars.npm : q jar [1.4,1.5)
org.webjars.npm » raml-parser jar [0.8,0.9)

Project Modules

There are no modules declared in this project.

RAML to object

NPM version Prettier

A thin wrapper around raml-js-parser-2, adding extra properties to the resulting object for use in raml2html and raml2md.

Versions 4.0.0 and up only support RAML 1.x files. If you still have RAML 0.8 source files, please stick with raml2obj 3.

Install

npm i raml2obj --save

Usage

var raml2obj = require('raml2obj');

// source can either be a filename, url, or parsed RAML object.
// Returns a promise.
raml2obj.parse(source).then(function(ramlObj) {
  // Do something with the resulting ramlObj :)
});

Options

The parse() function can be called with options to customize the result. Defaults are compatible with raml2html.

raml2obj.parse(source, {
  validate: true, 
  extensionsAndOverlays : [], 
  collectionFormat: 'arrays',
}).then(function(ramlObj) {
  // Do something with the resulting ramlObj :)
});
  • validate: triggers the rejectOnErrors flag of the underlying parser. defaults to false
  • extensionsAndOverlays: Defaults to []. See parser documentation.
  • collectionFormat: choose what data structure the double-nested [{name1: {..}}, {name2: {..}}] patterns of the raml-1-parser are transformed to in the output object:
collectionFormat value output
objects (default) {name1: { orderHint: 0, ..}, name2: { orderHint: 1, ..}} (eases e.g. property access). Applies to top-level collections only, nested are arrays except type properties.
arrays [ {key: "name1", ..}, {key: "name2", ..}] (eases e.g. representation in a database). Applies recursively everywhere.

Questions & Support

Do you have a question? Have you found a bug or would you like to request a feature? Please check out CONTRIBUTING.md.

License

raml2obj is available under the MIT license. See the LICENSE file for more info.

Versions

Version
2.2.0