Common Room · Schema

ApiTopic

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
id string Prefixed topic ID (format `tp_`)
name string The topic's display name
View JSON Schema on GitHub

JSON Schema

common-room-v2-apitopic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/v2/apitopic",
  "title": "ApiTopic",
  "type": "object",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Prefixed topic ID (format `tp_<number>`)"
    },
    "name": {
      "type": "string",
      "description": "The topic's display name"
    }
  }
}