contentfulvalidation/constants/constants.go
tomaz jejcic feef7a72ce fix: typo
2023-09-28 21:39:10 +02:00

24 lines
560 B
Go

package constants
const (
SeverityFatal Severity = "fatal"
SeverityError Severity = "error"
SeverityWarn Severity = "warn"
SeverityInfo Severity = "info"
)
const (
HealthError Health = "error"
HealthWarn Health = "warn"
HealthOk Health = "ok"
)
const (
MissingQueryFieldValues QueryError = "Missing field values"
QueryValueExpired QueryError = "Query field value is expired"
MissingQueryCondition QueryError = "Missing query condition"
MissingQueryField QueryError = "Query Field is empty"
)
const DateFormat = "02 Jan 2006"