smallrye-open-api icon indicating copy to clipboard operation
smallrye-open-api copied to clipboard

SmallRye implementation of Eclipse MicroProfile OpenAPI

Results 74 smallrye-open-api issues
Sort by recently updated
recently updated
newest added

proposal for support of @ParameterObject as discussed in https://github.com/smallrye/smallrye-open-api/issues/1819

See https://github.com/quarkusio/quarkus/issues/40328 /cc @mrickly @MikeEdgar - w.d.y.t ?

enhancement

it seems, that currently only regular setters are scanned/resolved for Annotations (Schema, SchemaProperty). For example: The following setter method is recognized in my quarkus service, that uses smallrye-open-api, and it...

enhancement

We have several REST services hidden as they are not user facing REST endpoints. We have been adding them to our application.yml file but certain properties can't be read from...

I just noticed that when adding properties with primitive types (`boolean`, `int`, etc.) to a class, they don't get marked as required, although they will definitely always have a value....

## Request to support RestEasy's `@ServerExceptionMapper` method annotation This request is an extension of the feature developed in #220 and stems from this quarkus issue: https://github.com/quarkusio/quarkus/issues/44035 smallrye-openapi can scan for...

enhancement

A composite constraint such as this does not appear in the open api schema when a REST method parameter is annotated. The validation still occurs at runtime though. ``` @Max(100000)...