Common Room · Schema

ApiActivityCategory

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
id string Prefixed label ID (format `l_`)
name string Display name for the category
value string Machine-readable category value
View JSON Schema on GitHub

JSON Schema

common-room-v2-apiactivitycategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/v2/apiactivitycategory",
  "title": "ApiActivityCategory",
  "type": "object",
  "required": [
    "id",
    "name",
    "value"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Prefixed label ID (format `l_<number>`)"
    },
    "name": {
      "type": "string",
      "description": "Display name for the category"
    },
    "value": {
      "type": "string",
      "description": "Machine-readable category value"
    }
  }
}