A reference to a video hosted by a PeerTube instance.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 10000 bytessource
object
Required
No description available.
thumbnail
string
uri
Optional
A valid URI.
title
string
Optional
No description available.
maxLength: 1000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"source",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 1000
},
"source": {
"type": "object",
"required": [
"url",
"instance",
"id"
],
"properties": {
"id": {
"type": "string",
"maxLength": 64,
"minLength": 1
},
"url": {
"type": "string",
"format": "uri"
},
"instance": {
"type": "string",
"format": "uri"
}
}
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"thumbnail": {
"type": "string",
"format": "uri"
},
"description": {
"type": "string",
"maxLength": 10000
}
}
},
"description": "A reference to a video hosted by a PeerTube instance."
}