Split · Schema

GroupCreate

Request body for creating a new group

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

Name Type Description
name string Name of the new group (must be unique)
description string Description of the new group
View JSON Schema on GitHub

JSON Schema

split-groupcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupCreate",
  "title": "GroupCreate",
  "type": "object",
  "description": "Request body for creating a new group",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the new group (must be unique)"
    },
    "description": {
      "type": "string",
      "description": "Description of the new group"
    }
  }
}