Google Analytics · Schema
UserDeletionRequest
JSON template for a user deletion request resource.
AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution
Properties
| Name | Type | Description |
|---|---|---|
| deletionRequestTime | string | This marks the point in time for which all user data before should be deleted |
| firebaseProjectId | string | Firebase Project Id |
| id | object | User ID. |
| kind | string | Value is "analytics#userDeletionRequest". |
| propertyId | string | Property ID |
| webPropertyId | string | Web property ID of the form UA-XXXXX-YY. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserDeletionRequest",
"title": "UserDeletionRequest",
"description": "JSON template for a user deletion request resource.",
"properties": {
"deletionRequestTime": {
"description": "This marks the point in time for which all user data before should be deleted",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"firebaseProjectId": {
"description": "Firebase Project Id",
"type": "string"
},
"id": {
"description": "User ID.",
"properties": {
"type": {
"description": "Type of user",
"type": "string"
},
"userId": {
"description": "The User's id",
"type": "string"
}
},
"type": "object"
},
"kind": {
"default": "analytics#userDeletionRequest",
"description": "Value is \"analytics#userDeletionRequest\".",
"type": "string"
},
"propertyId": {
"description": "Property ID",
"type": "string"
},
"webPropertyId": {
"description": "Web property ID of the form UA-XXXXX-YY.",
"type": "string"
}
},
"type": "object"
}