# **Live Campaign Models - Startup Equity Investing** **CoInvestors** ![](https://i.imgur.com/HNMUxDX.png) ```json= coInvestor { name, logo, title, description, otherInvestments [ { companyId, companyLogo } // to be provided by the admin panel front end by loading a company selector ] } coInvestors = [coInvestor] ``` --- **Other Investors** ![](https://i.imgur.com/D389Vji.png) ```json= otherInvestor { userId, following, //bool username, profilePic } otherInvestors = [otherInvestor] ``` --- **Funds Allocation** ![](https://i.imgur.com/ArYuMjd.png) ```json= fundAllocation{ description, useOfFunds[ {categoryName, categoryValue}, {categoryName, categoryValue} ] } ``` ---