PeerTube · Schema

CommentThreadResponse

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
total integer Total threads (included deleted ones) on this video
totalNotDeletedComments integer Total not-deleted threads (included deleted ones) on this video
data array
View JSON Schema on GitHub

JSON Schema

CommentThreadResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/CommentThreadResponse.json",
  "title": "CommentThreadResponse",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total threads (included deleted ones) on this video"
    },
    "totalNotDeletedComments": {
      "type": "integer",
      "description": "Total not-deleted threads (included deleted ones) on this video"
    },
    "data": {
      "type": "array",
      "maxItems": 100,
      "items": {
        "$ref": "#/components/schemas/VideoComment"
      }
    }
  }
}