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
OpenAPI does not define a default format for integer type. Java OpenAPI generator assumes int32 and generates Integer type, which then fails to deserialize from the response: Numeric value (29776874602) out of range of int (-2147483648 - 2147483647).
Expected
check_suite.id provides the format for integer type, which we assume is int64.
Reproduction Steps
Follow the steps in Create a check run docs and observe check_suite.id value in the response.
The text was updated successfully, but these errors were encountered:
Schema Inaccuracy
check_suite.id
throughout the schema is missing format definition, e.g.OpenAPI does not define a default format for
integer
type. Java OpenAPI generator assumesint32
and generatesInteger
type, which then fails to deserialize from the response:Numeric value (29776874602) out of range of int (-2147483648 - 2147483647)
.Expected
check_suite.id
provides the format forinteger
type, which we assume isint64
.Reproduction Steps
Follow the steps in Create a check run docs and observe
check_suite.id
value in the response.The text was updated successfully, but these errors were encountered: