Andrew Ryno
Andrew Ryno
A naive implementation allowing for validation (#231) in Dropwizard projects by using Bean Validation on the Jackson protocol objects. Right now only implemented `@Min`/`@Max` to support `minimum`/`maximum`. I say naive...
Given the following OpenAPI `requestBody` definition for an endpoint: ```yaml paths: /reports: post: x-jvm-package: reports summary: Create a new report operationId: createReport requestBody: required: true content: application/json: schema: type: object...
Documented here: https://swagger.io/docs/specification/describing-parameters/ under `schema vs content` Example Swagger definition that causes examples to fail with `Error: Parameter 'foo' has no schema`: ``` openapi: 3.0.1 info: version: 1.0.0 paths: /foo:...
This also makes ServiceProviderConfig and ResourceType match the ToMap method on Schema. For our use-case, the server/handlers don't fit neatly in our existing HTTP server, so I'm wanting to use...
I attempt to deploy a project that uses the `railsless-deploy` gem but get the following error: ``` cannot load such file -- railsless-deploy ``` Looking through other issues it should...
**Is your feature request related to a problem? Please describe.** We need to enable the `boringcrypto` experiment in Go in order to get [support for FIPS](https://medium.com/cyberark-engineering/navigating-fips-compliance-for-go-applications-libraries-integration-and-security-42ac87eec40b). Without Bazel this would...