PeerTube · Schema

VideoCommentForOwnerOrAdmin

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
id object
url object
text object
heldForReview object
threadId object
inReplyToCommentId object
createdAt object
updatedAt object
account object
video object
automaticTags array
View JSON Schema on GitHub

JSON Schema

VideoCommentForOwnerOrAdmin.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/VideoCommentForOwnerOrAdmin.json",
  "title": "VideoCommentForOwnerOrAdmin",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/id"
    },
    "url": {
      "$ref": "#/components/schemas/VideoComment/properties/url"
    },
    "text": {
      "$ref": "#/components/schemas/VideoComment/properties/text"
    },
    "heldForReview": {
      "$ref": "#/components/schemas/VideoComment/properties/heldForReview"
    },
    "threadId": {
      "$ref": "#/components/schemas/VideoComment/properties/threadId"
    },
    "inReplyToCommentId": {
      "$ref": "#/components/schemas/VideoComment/properties/inReplyToCommentId"
    },
    "createdAt": {
      "$ref": "#/components/schemas/VideoComment/properties/createdAt"
    },
    "updatedAt": {
      "$ref": "#/components/schemas/VideoComment/properties/updatedAt"
    },
    "account": {
      "$ref": "#/components/schemas/VideoComment/properties/account"
    },
    "video": {
      "$ref": "#/components/schemas/VideoInfo"
    },
    "automaticTags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}