I am using springdoc with spring-boot configured mostly with annotations.
I would like to expose a particular class schema which is not referenced by any service. Is it possible to do this?
In pseudocode, I am effectively trying to do this:
GroupedOpenAPI.parseAndAddClass(Class<?> clazz);
or
GroupedOpenAPI.scan("my.models.package");
=== Update ===
I managed to parse the Schema using ModelConverters.getInstance().readAll(MyClass.class);
and then tried to add it as an OpenApiCustomiser, however it is still not visible in the UI.