Adobe Analytics · Schema

Tag

A tag applied to an Analytics component

AdobeAnalyticsBusiness IntelligenceCustomer IntelligenceDigital MarketingMarketingWeb Analytics

Properties

Name Type Description
id integer Tag identifier
name string Tag name
description string Tag description
components array List of components this tag is applied to
View JSON Schema on GitHub

JSON Schema

adobe-analytics-tag-schema.json Raw ↑
{
  "type": "object",
  "description": "A tag applied to an Analytics component",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Tag identifier",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "Tag name",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "description": "Tag description",
      "example": "A sample description."
    },
    "components": {
      "type": "array",
      "description": "List of components this tag is applied to",
      "example": [],
      "items": {
        "type": "object"
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Tag"
}