Amplitude · Schema

AttributionRequest

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
api_key string The API key for the Amplitude project.
event object
View JSON Schema on GitHub

JSON Schema

amplitude-attributionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttributionRequest",
  "title": "AttributionRequest",
  "type": "object",
  "required": [
    "api_key",
    "event"
  ],
  "properties": {
    "api_key": {
      "type": "string",
      "description": "The API key for the Amplitude project."
    },
    "event": {
      "$ref": "#/components/schemas/AttributionEvent"
    }
  }
}