Amplitude · JSON Structure

Taxonomy Api Event Type List Response Structure

EventTypeListResponse schema from Amplitude Taxonomy API

Type: object Properties: 1
A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

EventTypeListResponse is a JSON Structure definition published by Amplitude, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-structure/taxonomy-api-event-type-list-response-structure.json",
  "name": "EventTypeListResponse",
  "description": "EventTypeListResponse schema from Amplitude Taxonomy API",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of event types.",
      "items": {
        "type": "object",
        "properties": {
          "event_type": {
            "type": "string",
            "description": "The name of the event type."
          },
          "category": {
            "$ref": "#/components/schemas/Category"
          },
          "description": {
            "type": "string",
            "description": "A description of the event type."
          }
        }
      }
    }
  }
}