2025-10-15 10:12:44 +03:00

9 lines
145 B
Go

package packagejson
type TypeValidatedField interface {
IsPresent() bool
IsValid() bool
ExpectedJSONType() string
ActualJSONType() string
}