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
i changed the format of a string property. e.g. when generated out of java and the propery is now mapped via Spring from a String to a UUID.
Perhaps it's correct to report a change. but the change is not on the type but on the format. and therefore userUid (string -> string) does not help.
userUid (string -> string)
old
"ServicePageInteractionRequest":{ "type":"object", "properties":{ "userUid":{ "type":"string" }, ... } }
new
"ServicePageInteractionRequest" : { "type" : "object", "properties" : { "userUid" : { "type" : "string", "format" : "uuid", "example" : "5412185d-2cf1-46d0-85d3-50bfc93b1122" }, ... } }
report:
Changed property type: userUid (string -> string)
The text was updated successfully, but these errors were encountered:
might be related to #192 but the changes were different there so i decided to open a seperate issue.
Sorry, something went wrong.
I am not very used to work in java, but adding a breakpoint on this line might help to understand the issue:
openapi-diff/core/src/main/java/org/openapitools/openapidiff/core/compare/SchemaDiff.java
Line 326 in d9fff61
No branches or pull requests
i changed the format of a string property.
e.g. when generated out of java and the propery is now mapped via Spring from a String to a UUID.
Perhaps it's correct to report a change. but the change is not on the type but on the format.
and therefore
userUid (string -> string)
does not help.old
new
report:
The text was updated successfully, but these errors were encountered: