mirror of
https://github.com/foomo/contentfulvalidation.git
synced 2025-10-16 12:25:37 +00:00
14 lines
280 B
Go
14 lines
280 B
Go
package validator
|
|
|
|
type SysType string
|
|
type ModelType string
|
|
type ModelID string
|
|
type MessageCode string
|
|
|
|
type ValidationResults map[ModelType]map[ModelID]*ValidationResult
|
|
|
|
type ModelTypeInfo struct {
|
|
ModelType ModelType `json:"modelType"`
|
|
Title string `json:"title"`
|
|
}
|