Split · Schema

User

A user within the Split account

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

Name Type Description
id string Unique identifier for the user
email string Email address of the user
name string Full name of the user
status string Current status of the user
type string User type or role
groups array Groups the user belongs to
View JSON Schema on GitHub

JSON Schema

split-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "description": "A user within the Split account",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the user"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the user"
    },
    "name": {
      "type": "string",
      "description": "Full name of the user"
    },
    "status": {
      "type": "string",
      "description": "Current status of the user",
      "enum": [
        "ACTIVE",
        "DEACTIVATED",
        "PENDING"
      ]
    },
    "type": {
      "type": "string",
      "description": "User type or role"
    },
    "groups": {
      "type": "array",
      "description": "Groups the user belongs to",
      "items": {
        "$ref": "#/components/schemas/GroupRef"
      }
    }
  }
}