ContributionsMost RecentMost LikesSolutionsRe: how to change the order of display when using inheritance chichepo , thanks!! for the work around approach. can be an alternative solution. For completeness if would be good if we have this capability supported out of the box. thanks!! again, appreciate your help and recommendation. Re: Disable Schema in Swagger UI Thanks!! Chichepo for your recommendation. basically, it's mandatory for me to use Schema for open API definition of my API. it will add lot of redundancy. Additionally as you know the schema capability helps in easy maintenance and readability. Appreciate if you could just any other alternative approach for hiding the schema section thanks!! Disable Schema in Swagger UI hi Experts, i would like to disable the display of Schema in the Swagger UI. appreciate if you could suggest a possible approach how to hide it. in my user context, the pure swagger editor is being used by the user and hence the display of Schema does not share the exact behavior of the API as they are the technical design time building blocks. appreciate if you could share how is could disable it Swagger UI, the complete Schema Block as shown in the image attached. thanks!! how to change the order of display when using inheritance hi Experts/colleagues, i'm using the the swagger UI latest version for my swagger API documentation. When using the inheritance via allOf capability, the swagger UI does not respect the order in which the properties are added. pseudo code: Approach 1 : Customer: properties: id:... userName:... allOf: - $ref: #/component/schemas/Address - type: object Approach 2: Customer: type: object allOf: - $ref: #/component/schemas/Address - type: object properties: id:... userName:... irrespective of the above two approaches, the swagger UI displays the properties of the Address first and then later the individual properties of the Address object. Can you please share , how i could control the order of the display using the YAML representation of openAPI specification. thanks!! Sharing an Example using the User and Address. my goal: i would like to have the ID first in the Swagger UI Solved