Common Room · Schema
ApiProspectorCompany
Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Prospector company ID |
| name | string | The company's display name |
| description | string | |
| employees | number | |
| linkedInHandles | array | |
| location | object | |
| logoUrl | string | |
| primaryWebsite | string | |
| raised | number | Total capital raised |
| revenueRange | object | |
| subIndustry | string | |
| technologies | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.commonroom.io/schemas/v2/apiprospectorcompany",
"title": "ApiProspectorCompany",
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "string",
"description": "Prospector company ID"
},
"name": {
"type": "string",
"description": "The company's display name"
},
"description": {
"type": "string",
"nullable": true
},
"employees": {
"type": "number",
"nullable": true
},
"linkedInHandles": {
"type": "array",
"nullable": true,
"items": {
"type": "string"
}
},
"location": {
"allOf": [
{
"$ref": "#/components/schemas/ApiProspectorCompanyLocation"
}
],
"nullable": true
},
"logoUrl": {
"type": "string",
"format": "uri",
"nullable": true
},
"primaryWebsite": {
"type": "string",
"nullable": true
},
"raised": {
"type": "number",
"nullable": true,
"description": "Total capital raised"
},
"revenueRange": {
"type": "object",
"nullable": true,
"properties": {
"min": {
"type": "number"
},
"max": {
"type": "number",
"nullable": true
}
}
},
"subIndustry": {
"type": "string",
"nullable": true
},
"technologies": {
"type": "array",
"nullable": true,
"items": {
"type": "string"
}
}
}
}