Amplitude · Schema

EventTypeListResponse

EventTypeListResponse schema from Amplitude Taxonomy API

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
data array Array of event types.
View JSON Schema on GitHub

JSON Schema

taxonomy-api-event-type-list-response-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/taxonomy-api-event-type-list-response-schema.json",
  "title": "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."
          }
        }
      }
    }
  }
}