PeerTube · Schema

UserRole

The user role (Admin = `0`, Moderator = `1`, User = `2`)

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming
View JSON Schema on GitHub

JSON Schema

UserRole.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/UserRole.json",
  "title": "UserRole",
  "type": "integer",
  "enum": [
    0,
    1,
    2
  ],
  "description": "The user role (Admin = `0`, Moderator = `1`, User = `2`)",
  "example": 2
}