{ "$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" } } }