Optimizely · Schema

FlagEnvironment

Flag configuration for a specific environment

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
enabled boolean Whether the flag is enabled in this environment
ruleset object
View JSON Schema on GitHub

JSON Schema

optimizely-flagenvironment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlagEnvironment",
  "title": "FlagEnvironment",
  "type": "object",
  "description": "Flag configuration for a specific environment",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether the flag is enabled in this environment"
    },
    "ruleset": {
      "$ref": "#/components/schemas/Ruleset"
    }
  }
}