PeerTube · Schema

VideoCommentThreadTree

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
comment object
children array
View JSON Schema on GitHub

JSON Schema

VideoCommentThreadTree.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/VideoCommentThreadTree.json",
  "title": "VideoCommentThreadTree",
  "properties": {
    "comment": {
      "$ref": "#/components/schemas/VideoComment"
    },
    "children": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VideoCommentThreadTree"
      }
    }
  }
}