I'm trying to migrate springfox to springdoc using this code:
import io.swagger.annotations.ApiModelProperty;
@ApiModelProperty(position = 30, required = true, value = "Group value")
to
import io.swagger.v3.oas.annotations.media.Schema;
@Schema(position = 20, required = false)
But I get not found for position
and value
. Do you know what is the proper way to replace them in springdoc?