RapiDoc icon indicating copy to clipboard operation
RapiDoc copied to clipboard

The "format": "uuid" in the request body object's schema, causes component to hang

Open peterlitvak opened this issue 2 years ago • 3 comments

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.

peterlitvak avatar Nov 01 '23 20:11 peterlitvak

This is a major problem for us also, it would be great to have this issue resolved.

gsheldon avatar Nov 23 '23 06:11 gsheldon