Jérémie Bresson

Results 73 issues of Jérémie Bresson

From the release notes: https://github.com/OAI/OpenAPI-Specification/releases/tag/3.1.0-rc0 > An OpenAPI Document now requires at least one of `paths`, `components` or `webhooks` to exist at the top level. While previous versions required paths,...

OAS 3.1.0

With OpenAPI 3.1.0 there is an new `identifier` to the License object. Reference: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#licenseObject > An SPDX license expression for the API. The `identifier` field is mutually exclusive of the...

OAS 3.1.0

### Expected Behavior I can import my gradle projects correctly. Without error. ### Current Behavior When I import my gradle project (multi modules gradle build) by selecting the root of...

a:bug :beetle:

With commit OAI/OpenAPI-Style-Guide@7687728 a new section "Guidelines for Naming Projects, Tools, or Organizations" was introduced in the [README](https://github.com/OAI/OpenAPI-Style-Guide/blob/c52cd48b90502f8998a236c10a64678209e79e34/README.md). This issue is about understanding the consequences. --- Found on GitHub: ###...

We would like to generate our manifests with the `bndmanifest` plugin. Our idea is to generate the `MANIFEST.MF` file, but in a way that it stays compatible with the PDE...

enhancement

I did the setup of `com.diffplug.eclipse.mavencentral` with `constrainTransitivesToThisRelease()` inside the `eclipseMavenCentral {}` section. See https://github.com/diffplug/goomph/issues/149 for more details. In a multi-module setup I have noticed that consumer of a library...

question

Given the an `OpenApi3` instance called `model` parsing result of this small spec: ```yaml openapi: 3.0.1 info: title: Test extensions description: API under test version: 1.0.7 paths: /foo/bar: get: responses:...

The OAS3 spec specifies: > This URL supports Server Variables and MAY be relative, to indicate that the host location is relative to the location where the OpenAPI document is...

When you parse an empty file you get this: ``` Exception in thread "main" java.lang.NullPointerException at java.util.ArrayDeque.addLast(ArrayDeque.java:249) at java.util.ArrayDeque.add(ArrayDeque.java:423) at com.reprezen.jsonoverlay.Resolver.treeWalk(Resolver.java:97) at com.reprezen.jsonoverlay.Resolver.findReferenceNodes(Resolver.java:92) at com.reprezen.jsonoverlay.Resolver.preresolveBase(Resolver.java:67) at com.reprezen.jsonoverlay.Resolver.preresolve(Resolver.java:58) at com.reprezen.jsonoverlay.Resolver.preresolve(Resolver.java:50) at...

This might be a corner case, but right now the parser do not support referenced of referenced schemas. With this OAS3 specification: ```yaml openapi: 3.0.1 info: title: chained redirects test...