PeerTube · Schema

AccountSummary

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
id integer
name string
displayName string
url string
host string
avatars array
View JSON Schema on GitHub

JSON Schema

AccountSummary.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/AccountSummary.json",
  "title": "AccountSummary",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "url"
    },
    "host": {
      "type": "string",
      "format": "hostname"
    },
    "avatars": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ActorImage"
      }
    }
  }
}