{
  "exportFormatVersion": 2,
  "exportTime": "2026-03-22 00:00:00",
  "containerVersion": {
    "path": "accounts/0000000000/containers/0000000000/versions/0",
    "accountId": "0000000000",
    "containerId": "0000000000",
    "containerVersionId": "0",
    "container": {
      "path": "accounts/0000000000/containers/0000000000",
      "accountId": "0000000000",
      "containerId": "0000000000",
      "name": "incar-top 랜딩페이지",
      "publicId": "GTM-XXXXXXX",
      "usageContext": ["WEB"]
    },
    "tag": [
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "tagId": "1",
        "name": "GA4 Event - page_view",
        "type": "html",
        "parameter": [
          {
            "type": "TEMPLATE",
            "key": "html",
            "value": "<script>\ndataLayer.push({\n  'event': 'page_view',\n  'page_type': location.hostname.includes('incar-top1') ? 'urgency' : 'general',\n  'page_url': location.href\n});\n<\/script>"
          },
          {
            "type": "BOOLEAN",
            "key": "supportDocumentWrite",
            "value": "false"
          }
        ],
        "firingTriggerId": ["1"],
        "tagFiringOption": "oncePerEvent"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "tagId": "2",
        "name": "GA4 Event - scroll_depth_50",
        "type": "gaawe",
        "parameter": [
          {
            "type": "TEMPLATE",
            "key": "eventName",
            "value": "scroll_depth"
          },
          {
            "type": "LIST",
            "key": "eventParameters",
            "list": [
              {
                "type": "MAP",
                "map": [
                  {
                    "type": "TEMPLATE",
                    "key": "name",
                    "value": "percent_scrolled"
                  },
                  {
                    "type": "TEMPLATE",
                    "key": "value",
                    "value": "{{Scroll Depth Threshold}}"
                  }
                ]
              }
            ]
          },
          {
            "type": "TEMPLATE",
            "key": "measurementId",
            "value": "G-XXXXXXXXXX"
          }
        ],
        "firingTriggerId": ["3"],
        "tagFiringOption": "oncePerEvent"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "tagId": "3",
        "name": "GA4 Event - scroll_depth_90",
        "type": "gaawe",
        "parameter": [
          {
            "type": "TEMPLATE",
            "key": "eventName",
            "value": "scroll_depth"
          },
          {
            "type": "LIST",
            "key": "eventParameters",
            "list": [
              {
                "type": "MAP",
                "map": [
                  {
                    "type": "TEMPLATE",
                    "key": "name",
                    "value": "percent_scrolled"
                  },
                  {
                    "type": "TEMPLATE",
                    "key": "value",
                    "value": "{{Scroll Depth Threshold}}"
                  }
                ]
              }
            ]
          },
          {
            "type": "TEMPLATE",
            "key": "measurementId",
            "value": "G-XXXXXXXXXX"
          }
        ],
        "firingTriggerId": ["4"],
        "tagFiringOption": "oncePerEvent"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "tagId": "4",
        "name": "GA4 Event - form_start",
        "type": "html",
        "parameter": [
          {
            "type": "TEMPLATE",
            "key": "html",
            "value": "<script>\ndocument.querySelectorAll('#applyForm input, #applyForm select, #applyForm textarea').forEach(function(el) {\n  el.addEventListener('focus', function handler() {\n    dataLayer.push({'event': 'form_start'});\n    el.removeEventListener('focus', handler);\n  }, {once: true});\n});\n<\/script>"
          },
          {
            "type": "BOOLEAN",
            "key": "supportDocumentWrite",
            "value": "false"
          }
        ],
        "firingTriggerId": ["2"],
        "tagFiringOption": "oncePerEvent"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "tagId": "5",
        "name": "GA4 Event - form_complete",
        "type": "html",
        "parameter": [
          {
            "type": "TEMPLATE",
            "key": "html",
            "value": "<script>\ndocument.querySelectorAll('form').forEach(function(form) {\n  form.addEventListener('submit', function() {\n    dataLayer.push({'event': 'form_complete'});\n  });\n});\n<\/script>"
          },
          {
            "type": "BOOLEAN",
            "key": "supportDocumentWrite",
            "value": "false"
          }
        ],
        "firingTriggerId": ["2"],
        "tagFiringOption": "oncePerEvent"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "tagId": "6",
        "name": "GA4 Event - phone_click",
        "type": "html",
        "parameter": [
          {
            "type": "TEMPLATE",
            "key": "html",
            "value": "<script>\ndocument.querySelectorAll('a[href^=\"tel:\"]').forEach(function(link) {\n  link.addEventListener('click', function() {\n    dataLayer.push({\n      'event': 'phone_click',\n      'phone_number': this.href.replace('tel:', '')\n    });\n  });\n});\n<\/script>"
          },
          {
            "type": "BOOLEAN",
            "key": "supportDocumentWrite",
            "value": "false"
          }
        ],
        "firingTriggerId": ["2"],
        "tagFiringOption": "oncePerEvent"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "tagId": "7",
        "name": "GA4 Event - cta_button_click",
        "type": "html",
        "parameter": [
          {
            "type": "TEMPLATE",
            "key": "html",
            "value": "<script>\ndocument.querySelectorAll('button.btn-premium, a[href=\"#contact\"], a[href=\"#TOP-leader\"], a.cta-button, [data-cta]').forEach(function(btn) {\n  btn.addEventListener('click', function() {\n    dataLayer.push({\n      'event': 'cta_button_click',\n      'cta_label': (this.textContent || '').trim().substring(0, 50),\n      'cta_url': this.href || this.getAttribute('href') || ''\n    });\n  });\n});\n<\/script>"
          },
          {
            "type": "BOOLEAN",
            "key": "supportDocumentWrite",
            "value": "false"
          }
        ],
        "firingTriggerId": ["2"],
        "tagFiringOption": "oncePerEvent"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "tagId": "8",
        "name": "GA4 Event - session_source",
        "type": "html",
        "parameter": [
          {
            "type": "TEMPLATE",
            "key": "html",
            "value": "<script>\nvar params = new URLSearchParams(location.search);\ndataLayer.push({\n  'event': 'session_source',\n  'utm_source': params.get('utm_source') || '(direct)',\n  'utm_medium': params.get('utm_medium') || '(none)',\n  'utm_campaign': params.get('utm_campaign') || ''\n});\n<\/script>"
          },
          {
            "type": "BOOLEAN",
            "key": "supportDocumentWrite",
            "value": "false"
          }
        ],
        "firingTriggerId": ["1"],
        "tagFiringOption": "oncePerEvent"
      }
    ],
    "trigger": [
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "triggerId": "1",
        "name": "All Pages",
        "type": "pageview"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "triggerId": "2",
        "name": "DOM Ready",
        "type": "domReady"
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "triggerId": "3",
        "name": "Scroll Depth 50%",
        "type": "scrollDepth",
        "parameter": [
          {
            "type": "BOOLEAN",
            "key": "verticalThresholdsPercent",
            "value": "true"
          },
          {
            "type": "TEMPLATE",
            "key": "verticalThresholds",
            "value": "50"
          }
        ]
      },
      {
        "accountId": "0000000000",
        "containerId": "0000000000",
        "triggerId": "4",
        "name": "Scroll Depth 90%",
        "type": "scrollDepth",
        "parameter": [
          {
            "type": "BOOLEAN",
            "key": "verticalThresholdsPercent",
            "value": "true"
          },
          {
            "type": "TEMPLATE",
            "key": "verticalThresholds",
            "value": "90"
          }
        ]
      }
    ],
    "variable": []
  }
}
