We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changed response attribute id from integer to string, as below, and this failing change was not detected.
From: "Pet": { "type": "object", "required": [ "name", "photoUrls" ], "properties": { "id": { "type": "integer", "format": "int64" }, ......
To: "Pet": { "type": "object", "required": [ "name", "photoUrls" ], "properties": { "id": { "type": "string" }, .............................
The text was updated successfully, but these errors were encountered:
#24 Change in type of response attribute is not detected
4c6246a
Thanks @MinniArora. Will be fixed in the next release.
Sorry, something went wrong.
Thank you for a quick fix
No branches or pull requests
Changed response attribute id from integer to string, as below, and this failing change was not detected.
From:
"Pet": {
"type": "object",
"required": [
"name",
"photoUrls"
],
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
......
To:
"Pet": {
"type": "object",
"required": [
"name",
"photoUrls"
],
"properties": {
"id": {
"type": "string"
},
.............................
The text was updated successfully, but these errors were encountered: