Google Tag Manager · Schema

ContainerVersion

Represents a version of a Google Tag Manager Container. A container version is a snapshot of all tags, triggers, variables, and configuration at a point in time.

AnalyticsConversion TrackingMarketingTag ManagementTracking

Properties

Name Type Description
path string GTM ContainerVersion's API relative path.
accountId string GTM Account ID.
containerId string GTM Container ID.
containerVersionId string The Container Version ID uniquely identifies the GTM Container Version.
name string Container version display name.
description string Container version description.
tag array The tags in the container that this version was taken from.
trigger array The triggers in the container that this version was taken from.
variable array The variables in the container that this version was taken from.
fingerprint string The fingerprint of the GTM Container Version as computed at storage time.
tagManagerUrl string Auto-generated link to the tag manager UI.
deleted boolean A value of true indicates this version has been deleted.
View JSON Schema on GitHub

JSON Schema

google-tag-manager-v2-container-version-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ContainerVersion",
  "type": "object",
  "description": "Represents a version of a Google Tag Manager Container. A container version is a snapshot of all tags, triggers, variables, and configuration at a point in time.",
  "properties": {
    "path": {
      "type": "string",
      "description": "GTM ContainerVersion's API relative path."
    },
    "accountId": {
      "type": "string",
      "description": "GTM Account ID."
    },
    "containerId": {
      "type": "string",
      "description": "GTM Container ID."
    },
    "containerVersionId": {
      "type": "string",
      "description": "The Container Version ID uniquely identifies the GTM Container Version."
    },
    "name": {
      "type": "string",
      "description": "Container version display name."
    },
    "description": {
      "type": "string",
      "description": "Container version description."
    },
    "tag": {
      "type": "array",
      "description": "The tags in the container that this version was taken from."
    },
    "trigger": {
      "type": "array",
      "description": "The triggers in the container that this version was taken from."
    },
    "variable": {
      "type": "array",
      "description": "The variables in the container that this version was taken from."
    },
    "fingerprint": {
      "type": "string",
      "description": "The fingerprint of the GTM Container Version as computed at storage time."
    },
    "tagManagerUrl": {
      "type": "string",
      "description": "Auto-generated link to the tag manager UI."
    },
    "deleted": {
      "type": "boolean",
      "description": "A value of true indicates this version has been deleted."
    }
  }
}