Split · Schema

TrafficType

A traffic type defining the kind of entity that feature flags target.

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

Name Type Description
id string Unique identifier for the traffic type
name string Name of the traffic type (e.g., user, account)
View JSON Schema on GitHub

JSON Schema

split-traffictype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrafficType",
  "title": "TrafficType",
  "type": "object",
  "description": "A traffic type defining the kind of entity that feature flags target.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the traffic type"
    },
    "name": {
      "type": "string",
      "description": "Name of the traffic type (e.g., user, account)"
    }
  }
}