diff --git a/csvprocessor/entity.go b/csvprocessor/entity.go index d0babe5..a08f358 100644 --- a/csvprocessor/entity.go +++ b/csvprocessor/entity.go @@ -47,6 +47,10 @@ func (e *Entity) ValidateFields(desc *schema.EntityDesc) error { return nil } + if field.Type == "Boolean" { + return nil + } + return fmt.Errorf("field %q cannot be nil on entity %s at ID %s", field.Name, field.Type, e.Fields["id"]) } }