Split · Schema

Workspace

A workspace (project) that organizes feature flags and experiments across business units or applications.

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

Name Type Description
id string Unique identifier for the workspace
name string Human-readable name of the workspace
requiresTitleAndComments boolean Whether changes require titles and comments
View JSON Schema on GitHub

JSON Schema

split-workspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Workspace",
  "title": "Workspace",
  "type": "object",
  "description": "A workspace (project) that organizes feature flags and experiments across business units or applications.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the workspace"
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the workspace"
    },
    "requiresTitleAndComments": {
      "type": "boolean",
      "description": "Whether changes require titles and comments"
    }
  }
}