Common Room · Schema

ApiTagUpdateProperties

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

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"
  ]
}