Common Room · Schema

ApiActivityType

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
id string Activity type identifier (e.g. `tweet`, `pr_comment`)
displayName string Human-readable display name for the activity type
View JSON Schema on GitHub

JSON Schema

common-room-v2-apiactivitytype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/v2/apiactivitytype",
  "title": "ApiActivityType",
  "type": "object",
  "required": [
    "id",
    "displayName"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Activity type identifier (e.g. `tweet`, `pr_comment`)"
    },
    "displayName": {
      "type": "string",
      "description": "Human-readable display name for the activity type"
    }
  }
}