Common Room · Schema

ApiTechStackProduct

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
id string Prefixed product ID (format `p_`)
product string Product name
vendor string Vendor name
View JSON Schema on GitHub

JSON Schema

common-room-v2-apitechstackproduct-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/v2/apitechstackproduct",
  "title": "ApiTechStackProduct",
  "type": "object",
  "required": [
    "id",
    "product",
    "vendor"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Prefixed product ID (format `p_<number>`)"
    },
    "product": {
      "type": "string",
      "description": "Product name"
    },
    "vendor": {
      "type": "string",
      "description": "Vendor name"
    }
  }
}