{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/sequoia-capital/schemas/portfolio-company", "title": "Sequoia Portfolio Company", "description": "A company in the Sequoia Capital investment portfolio, capturing key funding and operational data", "type": "object", "properties": { "id": { "type": "string", "description": "Unique company identifier" }, "name": { "type": "string", "description": "Legal company name" }, "website": { "type": "string", "format": "uri", "description": "Company website URL" }, "description": { "type": "string", "description": "Company description and business summary" }, "sector": { "type": "string", "description": "Primary industry sector", "examples": ["Enterprise Software", "Fintech", "Healthcare", "Consumer", "Infrastructure", "AI/ML"] }, "stage": { "type": "string", "enum": ["Seed", "Series A", "Series B", "Series C", "Series D+", "Growth", "Pre-IPO", "Public", "Acquired"], "description": "Current funding stage" }, "status": { "type": "string", "enum": ["Active", "IPO", "Acquired", "Merged", "Shutdown"], "description": "Portfolio company status" }, "founded": { "type": "integer", "minimum": 1900, "maximum": 2100, "description": "Year founded" }, "headquarters": { "$ref": "#/$defs/Location" }, "fundingRounds": { "type": "array", "items": { "$ref": "#/$defs/FundingRound" }, "description": "History of funding rounds" }, "totalFunding": { "type": "number", "minimum": 0, "description": "Total funding raised in USD" }, "valuation": { "type": ["number", "null"], "minimum": 0, "description": "Most recent valuation in USD. Null if not disclosed." }, "sequoiaFund": { "type": "string", "description": "Sequoia fund that made the investment (e.g., Sequoia Capital US, Sequoia India)" }, "leadInvestor": { "type": "boolean", "description": "Whether Sequoia was the lead investor in the initial round" }, "executives": { "type": "array", "items": { "$ref": "#/$defs/Executive" } }, "exitDetails": { "$ref": "#/$defs/ExitDetails", "description": "IPO or acquisition details if applicable" } }, "required": ["name", "stage", "status"], "$defs": { "Location": { "type": "object", "properties": { "city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"} } }, "FundingRound": { "type": "object", "properties": { "type": { "type": "string", "description": "Round type (Seed, Series A, Series B, etc.)" }, "amount": { "type": "number", "minimum": 0, "description": "Amount raised in USD" }, "date": { "type": "string", "format": "date", "description": "Round close date" }, "leadInvestors": { "type": "array", "items": {"type": "string"}, "description": "Lead investor names" }, "postMoneyValuation": { "type": ["number", "null"], "description": "Post-money valuation in USD" } }, "required": ["type"] }, "Executive": { "type": "object", "properties": { "name": {"type": "string"}, "title": {"type": "string"}, "linkedin": {"type": "string", "format": "uri"} }, "required": ["name", "title"] }, "ExitDetails": { "type": "object", "properties": { "type": { "type": "string", "enum": ["IPO", "Acquisition", "Merger", "SPAC"] }, "date": {"type": "string", "format": "date"}, "acquirer": {"type": "string"}, "acquisitionPrice": {"type": "number"}, "ticker": {"type": "string"}, "exchange": {"type": "string"} }, "required": ["type"] } } }