Common Room · Schema

ApiTag

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

JSON Schema

common-room-core-apitag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/core/apitag",
  "title": "ApiTag",
  "allOf": [
    {
      "$ref": "#/components/schemas/ApiTagCreationProperties"
    },
    {
      "type": "object",
      "properties": {
        "id": {
          "description": "Unique identifier for this tag",
          "type": "string"
        },
        "createdAt": {
          "description": "The date-time the tag was created in ISO8601 format",
          "type": "string",
          "format": "date-time"
        },
        "deletedAt": {
          "description": "The date-time the tag was deleted in ISO8601 format",
          "type": "string",
          "format": "date-time",
          "nullable": true
        }
      }
    }
  ],
  "required": [
    "id",
    "createdAt"
  ]
}