About sequelize datatypes

how can we pass object (as a type) in sequelize db?

Store it as a string with
JSON.stringify()
and when you want to retrieve it use
JSON.parse()

Or if your database engine supports it(like postgres) you can use column type JSON