Amplitude · Schema

EventProperty

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
event_property string The name of the event property.
event_type string The event type this property belongs to.
description string A description of the event property.
type string The data type of the property.
is_required boolean Whether the property is required.
View JSON Schema on GitHub

JSON Schema

amplitude-eventproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventProperty",
  "title": "EventProperty",
  "type": "object",
  "properties": {
    "event_property": {
      "type": "string",
      "description": "The name of the event property."
    },
    "event_type": {
      "type": "string",
      "description": "The event type this property belongs to."
    },
    "description": {
      "type": "string",
      "description": "A description of the event property."
    },
    "type": {
      "type": "string",
      "description": "The data type of the property."
    },
    "is_required": {
      "type": "boolean",
      "description": "Whether the property is required."
    }
  }
}