Optimizely · Schema

RecipientInput

Input for creating or updating a recipient

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
email string Email address of the recipient
first_name string First name of the recipient
last_name string Last name of the recipient
custom_fields object Custom fields associated with the recipient
View JSON Schema on GitHub

JSON Schema

optimizely-recipientinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecipientInput",
  "title": "RecipientInput",
  "type": "object",
  "description": "Input for creating or updating a recipient",
  "required": [
    "email"
  ],
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the recipient"
    },
    "first_name": {
      "type": "string",
      "description": "First name of the recipient"
    },
    "last_name": {
      "type": "string",
      "description": "Last name of the recipient"
    },
    "custom_fields": {
      "type": "object",
      "description": "Custom fields associated with the recipient",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}