{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/VideoCaption.json", "title": "VideoCaption", "properties": { "language": { "$ref": "#/components/schemas/VideoConstantString-Language" }, "automaticallyGenerated": { "type": "boolean" }, "captionPath": { "type": "string", "deprecated": true, "description": "Deprecated in PeerTube v8.0, use fileUrl instead" }, "fileUrl": { "description": "**PeerTube >= 7.1**", "type": "string" }, "m3u8Url": { "type": "string" }, "updatedAt": { "type": "string", "format": "date-time" } } }