Common Room · Schema
ApiProspectorContact
Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Prospector contact ID |
| name | string | The contact's display name |
| avatarUrl | string | |
| companyName | string | |
| companyWebsite | string | |
| fullName | string | |
| linkedInFollowerCount | number | |
| linkedInHandle | string | |
| location | object | |
| role | string | |
| seniority | string | |
| skills | array | |
| title | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.commonroom.io/schemas/v2/apiprospectorcontact",
"title": "ApiProspectorContact",
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "string",
"description": "Prospector contact ID"
},
"name": {
"type": "string",
"description": "The contact's display name"
},
"avatarUrl": {
"type": "string",
"format": "uri",
"nullable": true
},
"companyName": {
"type": "string",
"nullable": true
},
"companyWebsite": {
"type": "string",
"format": "uri",
"nullable": true
},
"fullName": {
"type": "string",
"nullable": true
},
"linkedInFollowerCount": {
"type": "number",
"nullable": true
},
"linkedInHandle": {
"type": "string",
"nullable": true
},
"location": {
"allOf": [
{
"$ref": "#/components/schemas/ApiLocation"
}
],
"nullable": true
},
"role": {
"type": "string",
"nullable": true
},
"seniority": {
"type": "string",
"nullable": true
},
"skills": {
"type": "array",
"nullable": true,
"items": {
"type": "string"
}
},
"title": {
"type": "string",
"nullable": true
}
}
}