PeerTube · Schema

VideoChannelCollaborator

Representation of a channel collaboration

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
id object
account object
state object
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

VideoChannelCollaborator.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/VideoChannelCollaborator.json",
  "title": "VideoChannelCollaborator",
  "type": "object",
  "description": "Representation of a channel collaboration",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/id"
    },
    "account": {
      "$ref": "#/components/schemas/AccountSummary"
    },
    "state": {
      "type": "object",
      "properties": {
        "id": {
          "$ref": "#/components/schemas/VideoChannelCollaboratorState"
        },
        "label": {
          "type": "string"
        }
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}