{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/ActorImage.json", "title": "ActorImage", "properties": { "path": { "description": "Deprecated in PeerTube v8.0, use fileUrl instead", "deprecated": true, "type": "string" }, "fileUrl": { "description": "**PeerTube >= 7.1**", "type": "string" }, "width": { "type": "integer" }, "height": { "type": "integer", "description": "**PeerTube >= 7.3**" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }