Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Event Metrics Schema

Table of contents
  1. event_metrics
    1. type
    2. count

When the inclusion of event metrics has been requested, the following will be added to the standard response schema:

{
  "sessions": [
    {
      "...": "...",
      "event_metrics": [
        {
          "type": "Autofill triggered",
          "count": 1
        }
      ]
    }
  ],
  "...": "..."
}

event_metrics

The value of this key is an array containing a hash for every event that occurred within the session.

type

The type of custom event the occurred. E.g. Email is invalid

count

The total amount of times that this event occurred during the session.