Optimizely · Schema

Unsubscribe

An unsubscribed recipient

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
email string Email address of the unsubscribed recipient
unsubscribed_at string Timestamp when the recipient unsubscribed
reason string Reason for the unsubscription
View JSON Schema on GitHub

JSON Schema

optimizely-unsubscribe-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Unsubscribe",
  "title": "Unsubscribe",
  "type": "object",
  "description": "An unsubscribed recipient",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the unsubscribed recipient"
    },
    "unsubscribed_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the recipient unsubscribed"
    },
    "reason": {
      "type": "string",
      "description": "Reason for the unsubscription"
    }
  }
}