Split · Schema

EnvironmentUpdate

Request body for updating an environment

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

Name Type Description
name string Updated name for the environment
production boolean Whether this is a production environment
View JSON Schema on GitHub

JSON Schema

split-environmentupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentUpdate",
  "title": "EnvironmentUpdate",
  "type": "object",
  "description": "Request body for updating an environment",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated name for the environment"
    },
    "production": {
      "type": "boolean",
      "description": "Whether this is a production environment"
    }
  }
}