package auth

const (
	requestErrAccessDenied  = "access_denied"
	requestErrInsufficient  = "insufficient"
	requestErrOverflow      = "overflow"
	requestErrInvalidValue  = "invalid_value"
	requestErrInvalidFormat = "invalid_format"
	requestErrMissing       = "missing"
	requestErrNotFound      = "not_found"
	requestErrConflig       = "conflict"
	requestErrActOfGod      = "act_of_god"
)

type requestError struct {
	Slug   string `json:"error,omitempty"`
	Field  string `json:"field,omitempty"`
	Param  string `json:"param,omitempty"`
	Header string `json:"header,omitempty"`
}
