Split · Schema

SegmentKeysUpdate

Request body for adding or removing segment keys

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

Name Type Description
keys array List of identity keys to add or remove
comment string Optional comment describing the change
View JSON Schema on GitHub

JSON Schema

split-segmentkeysupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SegmentKeysUpdate",
  "title": "SegmentKeysUpdate",
  "type": "object",
  "description": "Request body for adding or removing segment keys",
  "required": [
    "keys"
  ],
  "properties": {
    "keys": {
      "type": "array",
      "description": "List of identity keys to add or remove",
      "items": {
        "type": "string"
      }
    },
    "comment": {
      "type": "string",
      "description": "Optional comment describing the change"
    }
  }
}