Split · Schema

EnvironmentCreate

Request body for creating a new environment

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

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

JSON Schema

split-environmentcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentCreate",
  "title": "EnvironmentCreate",
  "type": "object",
  "description": "Request body for creating a new environment",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the new environment"
    },
    "production": {
      "type": "boolean",
      "description": "Whether this is a production environment"
    }
  }
}