KevinMitchell
KevinMitchell
I have two APIs, `Old` and `New` say. In `Old` there's a reference to a schema `S` that generates an error in the `RefPointer` class when it tries to resolve...
The spec contains the following example: ``` types: Person: properties: addresses: type: Address[] xml: wrapped: true ``` If I also include a name node, e.g. `name: foo`, which element name...
In a YAML source `A` I define ``` openapi: 3.0.0 info: ... components: schemas: Foo: type: object properties: ... x-foo: bar: . ``` In the editor there are no markers....
When using PATCH for partial updates (rfc7386) null values in the JSON are used to indicate that an existing value should be removed. However, for this to work our POJOs...
From a RAML 1 model I can access the list of traits defined in the model. But for each trait, an instance of `org.raml.v2.api.model.v10.methods.Trait`, all I seem to have access...
Suppose I define the following type: ``` types: Foo: enum: [X] FooArray: Foo[] Test: properties: a: Foo b: enum: [X] c: Foo[] d: FooArray e: type: array items: enum: [X]...
Hi, I'm a little confused about how to use the parser with overlays. Suppose I have a master RAML spec M, and then overlays A and B. If I want...
Although the RAML spec allows arrays of arrays it looks like the model built by the parser has problems handling them. Rather than perhaps the more conventional approach of a...
I want to be able to extract accurate start positions for various parts of a specification. As an example, from the model I can extract all the Path objects, and...
Hi, I have a spec split across multiple sources. The Kaizen OpenAPI editor in Eclipse shows no errors. However, when parsing the example I get an IllegalStateException with the message...