contentfulvalidation/validator/vo.go
2023-08-30 17:44:17 +02:00

16 lines
320 B
Go

package validator
type SysType string
type ModelType string
type ModelID string
type MessageCode string
type Severity string
type Health string
type ValidationResults map[ModelType]map[ModelID]*ValidationResult
type ModelTypeInfo struct {
ModelType ModelType `json:"modelType"`
Title string `json:"title"`
}