Common Room · Schema

ApiTagUpdateProperties

Community IntelligenceGo-To-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhookBuyer IntelligenceMCPAgent ToolingCLISCIMSignal Intelligence

Properties

Name Type Description
name string Name of the tag
description string Optional description of the tag
View JSON Schema on GitHub

JSON Schema

common-room-core-apitagupdateproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/core/apitagupdateproperties",
  "title": "ApiTagUpdateProperties",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the tag",
      "type": "string"
    },
    "description": {
      "description": "Optional description of the tag",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "name"
  ]
}