atproto blogging
at main 91 lines 2.0 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.embed.video", 4 "description": "A video embedded in a Bluesky record (eg, a post).", 5 "defs": { 6 "caption": { 7 "type": "object", 8 "required": [ 9 "lang", 10 "file" 11 ], 12 "properties": { 13 "file": { 14 "type": "blob", 15 "accept": [ 16 "text/vtt" 17 ], 18 "maxSize": 20000 19 }, 20 "lang": { 21 "type": "string", 22 "format": "language" 23 } 24 } 25 }, 26 "main": { 27 "type": "object", 28 "required": [ 29 "video" 30 ], 31 "properties": { 32 "alt": { 33 "type": "string", 34 "description": "Alt text description of the video, for accessibility.", 35 "maxLength": 10000, 36 "maxGraphemes": 1000 37 }, 38 "aspectRatio": { 39 "type": "ref", 40 "ref": "app.bsky.embed.defs#aspectRatio" 41 }, 42 "captions": { 43 "type": "array", 44 "items": { 45 "type": "ref", 46 "ref": "#caption" 47 }, 48 "maxLength": 20 49 }, 50 "video": { 51 "type": "blob", 52 "description": "The mp4 video file. May be up to 100mb, formerly limited to 50mb.", 53 "accept": [ 54 "video/mp4" 55 ], 56 "maxSize": 100000000 57 } 58 } 59 }, 60 "view": { 61 "type": "object", 62 "required": [ 63 "cid", 64 "playlist" 65 ], 66 "properties": { 67 "alt": { 68 "type": "string", 69 "maxLength": 10000, 70 "maxGraphemes": 1000 71 }, 72 "aspectRatio": { 73 "type": "ref", 74 "ref": "app.bsky.embed.defs#aspectRatio" 75 }, 76 "cid": { 77 "type": "string", 78 "format": "cid" 79 }, 80 "playlist": { 81 "type": "string", 82 "format": "uri" 83 }, 84 "thumbnail": { 85 "type": "string", 86 "format": "uri" 87 } 88 } 89 } 90 } 91}