Parent Companies

The Parent Companies array.

This information represents the parent companies of the company to incorporate.

Parent Companies Example for LLC

{
	"user": {...},
	"company": {...},
	"holders": [{...}, {...}],
	"parentCompanies": [
               {
                   "name": "Parent Company",                  
                   "percent": 33
               }
           ]
}

Parent Companies Example for Corporation

{
	"user": {...},
	"company": {...},
	"holders": [{...}, {...}],
	"parentCompanies": [
               {
                   "name": "Parent Company",
                   "countOfShares": 10
               }
           ]
}

Last updated