raml-java-parser
raml-java-parser copied to clipboard
(deprecated) A RAML parser based on SnakeYAML written in Java
Hi there, we currently trying to integrate the `raml-parser-2` into our `springmvc-raml-plugin`. In our project we need create a raml model out of Java source code and finally serialize the...
This happens internally for named type references and is made explicit when errors are returned. For example the RAML below will return an error at indexes `Start: 131 , End:...
Shouldn't this test pass? https://gist.github.com/aweisser/05442f28bad33265cca2fb2cfd94d324 Aha! Link: https://mulesoft-roadmap.aha.io/features/APIRAML-129
Hi, I have a scenario like we have 2 file and its location is as below D:/raml/example.raml D:/raml/common.raml(included file in example.raml) example.raml included common.raml, When i am parsing example.raml i...
The following RAML is not returning an ERROR: ``` yaml #%RAML 1.0 title: Test named parameters types: dept_code: pattern: ^\d+\-\w+$ traits: chargeable: headers: X-Dept: type: dept_code[] examples: one_dept: - 230-OCTO...
aRamlInstance.getResource("/orderDomain/orders/{orderId}") => null method Resource org.raml.model.Resource.getResource(String path) does not work with multiple resources named with the same prefix example : path ="/orderDomain/**orders**" : OK path ="/orderDomain/**orders**/{orderId}" : KO path ="/orderDomain/orders/services"...
### Affects: [1.0.0](https://github.com/raml-org/raml-java-parser/tree/1.0.0) ### Issue When pointing at a child JSON schema with fragment notation, the parent schema is returned instead. ### [Spec pointer](https://github.com/raml-org/raml-spec/blob/master/versions/raml-10/raml-10.md/#references-to-inner-elements) > Sometimes it is necessary to...
### Affects: [1.0.0](https://github.com/raml-org/raml-java-parser/tree/1.0.0) ### Issue The reserved base URI parameter `version` can be explicitly declared in the base URI parameters. When it is, the value of `#/version` is not validated...
### Affects: [1.0.0](https://github.com/raml-org/raml-java-parser/tree/1.0.0) ### Issue When defining URI parameters in nested resources, one can use the same name for a URI parameter in the parent resource and the child resource....
### Affects: [1.0.0](https://github.com/raml-org/raml-java-parser/tree/1.0.0) ### Issue URI parameters should never be of type file unless I'm mistaken. ### How to reproduce #### RAML file ``` yaml #%RAML 1.0 title: My API...