mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
22 lines
775 B
Go
22 lines
775 B
Go
package validation
|
|
|
|
type Create struct {
|
|
PhaseId uint `json:"phase_id" validate:"required"`
|
|
Name string `json:"name" validate:"required_strict,min=3"`
|
|
Description *string `json:"description,omitempty"`
|
|
TimeType string `json:"time_type" validate:"required"`
|
|
}
|
|
|
|
type Update struct {
|
|
Name string `json:"name" validate:"required_strict,min=3"`
|
|
Description *string `json:"description,omitempty"`
|
|
TimeType string `json:"time_type" validate:"required"`
|
|
}
|
|
|
|
type Query struct {
|
|
Page int `query:"page" validate:"omitempty,number,min=1,gt=0"`
|
|
Limit int `query:"limit" validate:"omitempty,number,min=1,max=100,gt=0"`
|
|
Search string `query:"search" validate:"omitempty,max=50"`
|
|
PhaseId *uint `query:"phase_id" validate:"omitempty"`
|
|
}
|