mirror of
https://github.com/foomo/contentfulvalidation.git
synced 2025-10-16 12:25:37 +00:00
16 lines
320 B
Go
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"`
|
|
}
|