Amplitude · Schema

EventListResult

EventListResult schema from Amplitude Dashboard REST API

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
data array Array of event type objects with names and volumes.
View JSON Schema on GitHub

JSON Schema

dashboard-rest-api-event-list-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-schema/dashboard-rest-api-event-list-result-schema.json",
  "title": "EventListResult",
  "description": "EventListResult schema from Amplitude Dashboard REST API",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of event type objects with names and volumes.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The name of the event type."
          },
          "totals": {
            "type": "integer",
            "description": "The total number of times this event was fired in the last 30 days."
          }
        }
      }
    }
  }
}