Optimizely · Schema

ExperimentInput

Input for creating or updating an experiment

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
project_id integer The project this experiment belongs to
name string Human-readable name of the experiment
description string Description of the experiment
status string Current status
View JSON Schema on GitHub

JSON Schema

optimizely-experimentinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentInput",
  "title": "ExperimentInput",
  "type": "object",
  "description": "Input for creating or updating an experiment",
  "properties": {
    "project_id": {
      "type": "integer",
      "format": "int64",
      "description": "The project this experiment belongs to"
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the experiment"
    },
    "description": {
      "type": "string",
      "description": "Description of the experiment"
    },
    "status": {
      "type": "string",
      "description": "Current status",
      "enum": [
        "active",
        "paused",
        "not_started",
        "archived"
      ]
    }
  }
}