{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Video", "type": "object", "properties": { "uid": { "type": "string", "description": "The unique identifier of the video." }, "thumbnail": { "type": "string", "description": "URL of the video thumbnail." }, "playback": { "type": "object" }, "status": { "type": "object" }, "meta": { "type": "object", "description": "User-defined metadata." }, "created": { "type": "string" }, "modified": { "type": "string" }, "duration": { "type": "number", "description": "Duration of the video in seconds." }, "size": { "type": "integer", "description": "Size of the video in bytes." }, "requireSignedURLs": { "type": "boolean" }, "allowedOrigins": { "type": "array" } } }