Amplitude · Schema
DeletionListResponse
A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior
Properties
| Name | Type | Description |
|---|---|---|
| deletions | array | Array of deletion request records. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeletionListResponse",
"title": "DeletionListResponse",
"type": "object",
"properties": {
"deletions": {
"type": "array",
"description": "Array of deletion request records.",
"items": {
"type": "object",
"properties": {
"day": {
"type": "string",
"format": "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": "integer",
"format": "int64"
}
},
"user_ids": {
"type": "array",
"description": "Array of user IDs included in the deletion.",
"items": {
"type": "string"
}
}
}
}
}
}
}