PeerTube · Schema

VideoRedundancy

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
id object
name string
url string
uuid object
redundancies object
View JSON Schema on GitHub

JSON Schema

VideoRedundancy.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/VideoRedundancy.json",
  "title": "VideoRedundancy",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/id"
    },
    "name": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "url"
    },
    "uuid": {
      "$ref": "#/components/schemas/UUIDv4"
    },
    "redundancies": {
      "type": "object",
      "properties": {
        "streamingPlaylists": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/FileRedundancyInformation"
          }
        }
      }
    }
  }
}