invalid_type and in required.city field to be left blank, but by default, even though i didn't specify notNull() on that field, Zod would error out saying that the field is required.id, organizationId, and name, they are optional; however, Zod treats them as ZodNullable but they should in fact be treated as ZodOptional<ZodNullable<ZodString>> to allow my fields to be empty (as is the intended affect).