ContributionsMost RecentMost LikesSolutionsRe: Adding multiple descriptive text for tags / summary: I am rendering in Redoc. Re: Adding multiple descriptive text for tags / summary: Thanks ponelat . Do I understand from the documentation that what I want to achieve is not possible? I want to put a description text under the Authentication tag heading. There is already description text there, which is displayed in the User Login section (which I also want) Ideally i would like to have an output like this: Authentication Some text about Authentication. User login Use the credentials to log in. Adding multiple descriptive text for tags / summary: Hi, I am a newbie, so probably asking a stupid question. I am editing a YAML file that looks like this: paths: /api/login: post: summary: User login tags: - Authentication description: Use the credentials to log in. requestBody: description: Login credentials<br/> required: true content: application/json: schema: type: object required: - username - password properties: username: type: string This displays something like this: Authentication User login Use the credentials to log in. I want to add some text underneath Authentication, which describes the entire authentication process etc. (as well as keep the text already present underneath User Login for additional information) - I cannot work out how to do it? - Can anyone help a newbie?