PeerTube · Schema

BlockStatus

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
accounts object
hosts object
View JSON Schema on GitHub

JSON Schema

BlockStatus.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/BlockStatus.json",
  "title": "BlockStatus",
  "properties": {
    "accounts": {
      "type": "object",
      "additionalProperties": {
        "x-additionalPropertiesName": "account",
        "type": "object",
        "properties": {
          "blockedByServer": {
            "type": "boolean"
          },
          "blockedByUser": {
            "type": "boolean"
          }
        }
      }
    },
    "hosts": {
      "type": "object",
      "additionalProperties": {
        "x-additionalPropertiesName": "host",
        "type": "object",
        "properties": {
          "blockedByServer": {
            "type": "boolean"
          },
          "blockedByUser": {
            "type": "boolean"
          }
        }
      }
    }
  }
}