PeerTube · Schema
VideoChannelSync
VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming
Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| state | object | |
| externalChannelUrl | string | |
| createdAt | string | |
| lastSyncAt | string | |
| channel | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/VideoChannelSync.json",
"title": "VideoChannelSync",
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/id"
},
"state": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"example": 2
},
"label": {
"type": "string",
"example": "PROCESSING"
}
}
},
"externalChannelUrl": {
"type": "string",
"example": "https://youtube.com/c/UC_myfancychannel"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"lastSyncAt": {
"type": "string",
"format": "date-time",
"nullable": true
},
"channel": {
"$ref": "#/components/schemas/VideoChannel"
}
}
}