gnostic icon indicating copy to clipboard operation
gnostic copied to clipboard

A compiler for APIs described by the OpenAPI Specification with plugins for code generation and other API support tasks.

Results 125 gnostic issues
Sort by recently updated
recently updated
newest added

After setting the tag, why not overwrite the original default but recreate the tag, proto file: ```protobuf service Test { rpc CreateTest (CreateTestRequest) returns (CreateTestReply) { option (google.api.http) = {...

I was try following https://google.aip.dev/133 guidance ``` // Copyright 2019 Google LLC. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file...

In Monorepos, merging all proto files into a single openapi.yaml isn't useful. This PR adds a flag for separating generated openapi.yaml files for each proto file. Fixes https://github.com/google/gnostic/issues/268

Both types: google.protobuf.UInt64Value & google.protobuf.StringValue not getting converted correctly to openapi and is missing descriptions. for example this proto : message Request { // A limit on the number of...

## Description When running protoc-gen-openapi for generating OpenAPI description for multiple .proto files, the output is **incorrectly** mixed into one OpenAPI description file. Expected behaviour is to generate OpenAPI description...

Hi, As github.com/golang/protobuf is marked as deprecated[1], can we switch all usage to google.golang.org/protobuf? [1] https://github.com/golang/protobuf/blob/master/go.mod#L1

It seems that only binary protocol buffers are supported for interconversion between protobuf and swagger. How can I convert binary protocol buffers (`.pb`) to and from proto3 protocol buffers (`.proto`),...

Hi guys, I have a case that wants to refer to a schema from an imported file from a proto file. Since the `_ref` value on the `Reference` message is...

It seems that for "well known" types, such as `google.protobuf.Timestamp`, the generated OpenAPI 3.0 document contains a inline schema (format date-time) instead of a reference, which is a nice feature....