mshauneu / chrome-swagger-ui

Chrome Extension for Swagger UI
17 stars 7 forks source link

Empty objects are not displayed #11

Open ashertarno opened 7 years ago

ashertarno commented 7 years ago

hi, we have an empty object (object with no fields), e.g. public class Hello { } and public class World { private Hello hello; }

we are expecting it to be displayed in console as "hello" : {}. in swagger json we indeed see the following:

"hello": { "type": "any" }

but nothing is displayed in console.

thanks.