ContributionsMost RecentMost LikesSolutionsSwagger UI quoted vs unquoted longs When I am entering int64/long values into the swagger UI it seems after a certain amount of digits the lower order values start to get corrupted. Here's an example: While the value I'm using in productStructureKey ends in 17 the payload converts this to 20 when sending to my application. Interestingly when I wrap it in quotes the correct value works: With the quoted value of the long the correct value is sent. Here's the model for the relevant section: instrumentFilter { productStructureKey* integer($int64) } expirationDate string($date) Is this expected behavior or a bug with the generated UI? Do big values for longs need to be quoted to be sent correctly using the UI? Solved