RapiDoc
RapiDoc copied to clipboard
The "format": "uuid" in the request body object's schema, causes component to hang
We have the following request body object's schema.
"MyRequest": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"someUuid": {
"type": "string",
"format": "uuid"
}
}
}
This causes the web component to hang on load. No errors or any other console output.
The problem seems to be a "format": "uuid" which is auto-generated for the Java UUID type fields in the request object.
According to the spec https://swagger.io/specification/ the uuid format should be supported. Even if not supported, it should not cause the component to hang but use some default form of rendering.
This is a major problem for us also, it would be great to have this issue resolved.