I want to sort my Schemas
generated for my Entity classes, DTO classes in Springdoc UI
.
I am able to sort the tags
and operations
using the below configuration in yml
file but my schemas are not in the sorted order.
springdoc:
swagger-ui:
disable-swagger-default-url: true
tags-sorter: alpha
operations-sorter: alpha
doc-expansion: none
How could I sort my schemas.
Thanks.