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
Problem
The imageUrlHash field in our API’s OpenAPI spec is a 64-bit integer, but it’s missing a format attribute. Without it, the spec doesn’t clearly explain how the field should be understood or used. Adding a format gives more detail beyond just “it’s a number,” which helps people and client generators better work with the API.
Proposed Fix
Add format: int64 to the imageUrlHash field. This tells everyone (and everything) that it’s a 64-bit integer.
The text was updated successfully, but these errors were encountered:
Problem
The
imageUrlHash
field in our API’s OpenAPI spec is a 64-bit integer, but it’s missing aformat
attribute. Without it, the spec doesn’t clearly explain how the field should be understood or used. Adding aformat
gives more detail beyond just “it’s a number,” which helps people and client generators better work with the API.Proposed Fix
Add
format: int64
to theimageUrlHash
field. This tells everyone (and everything) that it’s a 64-bit integer.The text was updated successfully, but these errors were encountered: