Jan Sýkora
Jan Sýkora
We're dealing with similar issue. Our proto file: ```proto import "google/protobuf/field_mask.proto"; message SomeMessage { google.protobuf.FieldMask update_mask = 10; } ``` (Here's the definition of FieldMask:) ```proto // google/protobuf/field_mask.proto message FieldMask...
@johanbrandhorst I have created a separate issue #2580 with reproducible example.
First, thank you all for your replies! Below are some answers to your comments. > @jan-sykora if you run protoc twice (once for foo.proto and once for bar.proto), you would...
I have noticed a potential inconsistency regarding this mapping. When the optional proto field is a message, it is converted into OpenAPI as a schema component that is then referenced....
Also created related issue #351.
Hi, yes, I can try to fix that. I've added the `[(google.api.field_behavior) = REQUIRED]` annotation to the CreateBookRequest in the a_bit_of_everything.proto and it generates the swagger file incorrectly (as described...
This turned out more difficult than expected. The main problem is that it is not clear how the Reference Object `$ref` should be generated. ## Context The [OpenAPI v2 spec](https://swagger.io/specification/v2/)...
Thanks for the quick response! Re 1. I am following the https://google.aip.dev/134 from Google AIP. According to this guide, the request message **must** contain a field for the resource and...
Unfortunately, the only workaround that worked for us was to setup k3d/k3s manually (not using the setup-k3d-k3s action). We didn't change anything else.