-
-
Notifications
You must be signed in to change notification settings - Fork 568
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Describe the bug
Schema.title doesn't rendered after openapi updated from 2.6.0 to 2.8.5
To Reproduce
Steps to reproduce the behavior:
@RestController
class UserController {
@PostMapping("/users")
@Operation(summary = "create user")
suspend fun createUser(@RequestBody user: User): User {
return User(1L, user.name, user.email)
}
}
@Schema(description = "userInfo")
data class User(
@Schema(title = "id")
var id: Long?,
@Schema(title = "someName")
val name: String,
@Schema(title = "someEmail")
val email: String
)
- What version of spring-boot you are using? 3.4.3
- What modules and versions of springdoc-openapi are you using? 2.8.5
Expected behavior
title should be rendered

Additional context
springdoc.api-docs.resolve-schema-properties=truedoesn't works
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested
