{ "lexicon": 1, "id": "sh.weaver.embed.video", "description": "A video embedded in a Weaver record (eg, a notebook entry).", "defs": { "caption": { "type": "object", "required": [ "lang", "file" ], "properties": { "file": { "type": "blob", "accept": [ "text/vtt" ], "maxSize": 20000 }, "lang": { "type": "string", "format": "language" } } }, "main": { "type": "object", "required": [ "videos" ], "properties": { "videos": { "type": "array", "items": { "type": "ref", "ref": "#video" } } } }, "video": { "type": "object", "required": [ "video" ], "properties": { "alt": { "type": "string", "description": "Alt text description of the video, for accessibility.", "maxLength": 10000, "maxGraphemes": 1000 }, "captions": { "type": "array", "items": { "type": "ref", "ref": "#caption" }, "maxLength": 20 }, "dimensions": { "type": "union", "refs": [ "app.bsky.embed.defs#aspectRatio", "sh.weaver.embed.defs#percentSize", "sh.weaver.embed.defs#pixelSize" ] }, "name": { "type": "string", "maxLength": 128 }, "video": { "type": "blob", "description": "The mp4 video file. May be up to 100mb, formerly limited to 50mb.", "accept": [ "video/mp4" ], "maxSize": 100000000 } } }, "view": { "type": "object", "required": [ "cid", "playlist" ], "properties": { "alt": { "type": "string", "maxLength": 10000, "maxGraphemes": 1000 }, "cid": { "type": "string", "format": "cid" }, "dimensions": { "type": "union", "refs": [ "app.bsky.embed.defs#aspectRatio", "sh.weaver.embed.defs#percentSize", "sh.weaver.embed.defs#pixelSize" ] }, "name": { "type": "string", "maxLength": 128 }, "playlist": { "type": "string", "format": "uri" }, "thumbnail": { "type": "string", "format": "uri" } } } } }