func()

in models/v3/schema/types/types.go [180:188]


func (r *ResourcesBlobInfo) Validate() error {
	if r.BlobURI == "" {
		return errors.New(".ResourcesBlobInfo.BlobURI is required")
	}
	if r.BlobSize == 0 {
		return errors.New(".ResourcesBlobInfo.BlobSize is required")
	}
	return nil
}