type Book struct {
Id int `json:"id"`
Name string `json:"name" form:"name" max:"50" required:"true" description:"Book name"`
Price int `json:"price" form:"price" query:"price" yaml:"price" required:"true" description:"Book price"`
}
type BookUpdateRequest struct {
ID int `path:"id"`
Body struct {
Name string `json:"name" minLength:"5" maxLength:"50" required:"true" description:"Book name"`
Price int `json:"price" min:"5" required:"true" description:"Book price"`
} `json:"body"`
}