Optimizely · Schema

EnvironmentInput

Input for creating or updating an environment

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
key string Unique key for the environment
name string Human-readable name of the environment
is_primary boolean Whether this is the primary environment
View JSON Schema on GitHub

JSON Schema

optimizely-environmentinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentInput",
  "title": "EnvironmentInput",
  "type": "object",
  "description": "Input for creating or updating an environment",
  "properties": {
    "key": {
      "type": "string",
      "description": "Unique key for the environment"
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the environment"
    },
    "is_primary": {
      "type": "boolean",
      "description": "Whether this is the primary environment"
    }
  }
}