You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: limit
description: A limit on the number of objects to be returned, between 1 and 100.
in: query
required: false
schema:
type: int64
format: uint64
The text was updated successfully, but these errors were encountered:
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 objects to be returned, between 1 and 100.
google.protobuf.UInt64Value limit = 1
getting converted into:
in: query
description: The uint64 value.
schema:
type: integer
format: uint64
expected output :
description: A limit on the number of objects to be returned, between 1 and 100.
in: query
required: false
schema:
type: int64
format: uint64
The text was updated successfully, but these errors were encountered: