Seeding of data during initial deployment

System Information
  • Strapi Version: 3.3.3
  • Operating System: Mac
  • Database: SQLite
  • Node Version: 14.10.1
  • NPM Version: 6.14.9
  • Yarn Version:

Hi All, I’m trying to seed data during my initial set up of Strapi. I have a json file with the following structure:
{ "User": {"name": "Jack", "profile_image":"image/profile.png", "past_companies": [{"name":"company 1", "company_image":"image/company1.png"}]} }

I managed to seed the name and profile image along, with array of past companies, but i could not seed the company_image.

Is there a way to seed images for objects in an array?

Thanks in advance!