Optimizely · Schema

ProjectInput

Input for creating or updating a project

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
name string Human-readable name of the project
status string Current status of the project
View JSON Schema on GitHub

JSON Schema

optimizely-projectinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectInput",
  "title": "ProjectInput",
  "type": "object",
  "description": "Input for creating or updating a project",
  "properties": {
    "name": {
      "type": "string",
      "description": "Human-readable name of the project"
    },
    "status": {
      "type": "string",
      "description": "Current status of the project",
      "enum": [
        "active",
        "archived"
      ]
    }
  }
}