PostHog · Schema

AsyncDeletionStatus

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
person_uuid string The UUID of the person whose events are queued for deletion.
created_at string When the deletion was requested.
status string Current status: 'pending' or 'completed'.
delete_verified_at string When the deletion was verified complete. Null if still pending.
View JSON Schema on GitHub

JSON Schema

posthog-asyncdeletionstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AsyncDeletionStatus",
  "title": "AsyncDeletionStatus",
  "type": "object",
  "properties": {
    "person_uuid": {
      "type": "string",
      "description": "The UUID of the person whose events are queued for deletion."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the deletion was requested."
    },
    "status": {
      "type": "string",
      "readOnly": true,
      "description": "Current status: 'pending' or 'completed'."
    },
    "delete_verified_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "When the deletion was verified complete. Null if still pending."
    }
  },
  "required": [
    "created_at",
    "delete_verified_at",
    "person_uuid",
    "status"
  ]
}