PeerTube · Schema

AutomaticTagAvailable

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
available array Available auto tags that can be used to filter objects or set a comment in review state
View JSON Schema on GitHub

JSON Schema

AutomaticTagAvailable.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/AutomaticTagAvailable.json",
  "title": "AutomaticTagAvailable",
  "properties": {
    "available": {
      "type": "array",
      "description": "Available auto tags that can be used to filter objects or set a comment in review state",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "tag name"
          },
          "type": {
            "type": "string",
            "enum": [
              "core",
              "watched-words-list"
            ]
          }
        }
      }
    }
  }
}