PeerTube · Schema

ActorImage

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
path string Deprecated in PeerTube v8.0, use fileUrl instead
fileUrl string **PeerTube >= 7.1**
width integer
height integer **PeerTube >= 7.3**
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

ActorImage.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/ActorImage.json",
  "title": "ActorImage",
  "properties": {
    "path": {
      "description": "Deprecated in PeerTube v8.0, use fileUrl instead",
      "deprecated": true,
      "type": "string"
    },
    "fileUrl": {
      "description": "**PeerTube >= 7.1**",
      "type": "string"
    },
    "width": {
      "type": "integer"
    },
    "height": {
      "type": "integer",
      "description": "**PeerTube >= 7.3**"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}