Common Room · Schema

ApiTagAssignment

Optional List of tags to assign

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks
View JSON Schema on GitHub

JSON Schema

common-room-core-apitagassignment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/core/apitagassignment",
  "title": "ApiTagAssignment",
  "type": "object",
  "description": "Optional List of tags to assign",
  "oneOf": [
    {
      "$ref": "#/components/schemas/ApiTagAssignmentById"
    },
    {
      "$ref": "#/components/schemas/ApiTagAssignmentByName"
    }
  ],
  "discriminator": {
    "propertyName": "type",
    "mapping": {
      "id": "#/components/schemas/ApiTagAssignmentById",
      "name": "#/components/schemas/ApiTagAssignmentByName"
    }
  }
}