PeerTube · Schema

VideoUploadRequestLegacy

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming
View JSON Schema on GitHub

JSON Schema

VideoUploadRequestLegacy.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/VideoUploadRequestLegacy.json",
  "title": "VideoUploadRequestLegacy",
  "allOf": [
    {
      "$ref": "#/components/schemas/VideoUploadRequestCommon"
    },
    {
      "type": "object",
      "required": [
        "videofile"
      ],
      "properties": {
        "videofile": {
          "description": "Video file",
          "type": "string",
          "format": "binary"
        }
      }
    }
  ]
}