Amplitude · Schema

DsarRequest

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
user_ids array Array of user IDs to retrieve data for.
View JSON Schema on GitHub

JSON Schema

amplitude-dsarrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DsarRequest",
  "title": "DsarRequest",
  "type": "object",
  "required": [
    "user_ids"
  ],
  "properties": {
    "user_ids": {
      "type": "array",
      "description": "Array of user IDs to retrieve data for.",
      "items": {
        "type": "string"
      }
    }
  }
}