Amplitude · JSON Structure

Dsar Api Deletion List Response Structure

DeletionListResponse schema from Amplitude Data Subject Access Request API

Type: object Properties: 1
A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

DeletionListResponse is a JSON Structure definition published by Amplitude, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

deletions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-structure/dsar-api-deletion-list-response-structure.json",
  "name": "DeletionListResponse",
  "description": "DeletionListResponse schema from Amplitude Data Subject Access Request API",
  "type": "object",
  "properties": {
    "deletions": {
      "type": "array",
      "description": "Array of deletion request records.",
      "items": {
        "type": "object",
        "properties": {
          "day": {
            "type": "date",
            "description": "The day the deletion job was scheduled."
          },
          "status": {
            "type": "string",
            "description": "The processing status of the deletion.",
            "enum": [
              "staging",
              "submitted",
              "done"
            ]
          },
          "amplitude_ids": {
            "type": "array",
            "description": "Array of Amplitude IDs included in the deletion.",
            "items": {
              "type": "int64"
            }
          },
          "user_ids": {
            "type": "array",
            "description": "Array of user IDs included in the deletion.",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}