atproto blogging
at main 49 lines 1.2 kB view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.embed.recordWithMedia", 4 "description": "A representation of a record embedded in a Weaver record (eg, a notebook entry), alongside other compatible embeds. For example, a quote post and image, or a quote post and external URL card.", 5 "defs": { 6 "main": { 7 "type": "object", 8 "required": [ 9 "records", 10 "media" 11 ], 12 "properties": { 13 "media": { 14 "type": "union", 15 "refs": [ 16 "sh.weaver.embed.images", 17 "sh.weaver.embed.external", 18 "sh.weaver.embed.video" 19 ] 20 }, 21 "records": { 22 "type": "ref", 23 "ref": "sh.weaver.embed.records" 24 } 25 } 26 }, 27 "view": { 28 "type": "object", 29 "required": [ 30 "record", 31 "media" 32 ], 33 "properties": { 34 "media": { 35 "type": "union", 36 "refs": [ 37 "sh.weaver.embed.images#view", 38 "sh.weaver.embed.external#view", 39 "sh.weaver.embed.video#view" 40 ] 41 }, 42 "records": { 43 "type": "ref", 44 "ref": "sh.weaver.embed.records#view" 45 } 46 } 47 } 48 } 49}