Amplitude · Schema

EventType

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
event_type string The name of the event type.
category object
description string A description of the event type.
View JSON Schema on GitHub

JSON Schema

amplitude-eventtype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventType",
  "title": "EventType",
  "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."
    }
  }
}