Optimizely · Schema

SmartCampaign

A smart campaign that automates multi-step marketing workflows

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
id integer Unique identifier for the smart campaign
name string Human-readable name of the smart campaign
status string Current status of the smart campaign
created string Timestamp when the campaign was created
last_modified string Timestamp when the campaign was last modified
View JSON Schema on GitHub

JSON Schema

optimizely-smartcampaign-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SmartCampaign",
  "title": "SmartCampaign",
  "type": "object",
  "description": "A smart campaign that automates multi-step marketing workflows",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier for the smart campaign"
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the smart campaign"
    },
    "status": {
      "type": "string",
      "description": "Current status of the smart campaign",
      "enum": [
        "active",
        "paused",
        "draft",
        "completed"
      ]
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the campaign was created"
    },
    "last_modified": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the campaign was last modified"
    }
  }
}