a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
at major 30 lines 772 B view raw
1{ 2 "lexicon": 1, 3 "id": "fyi.unravel.frontpage.comment", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "Record containing a Frontpage comment.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": ["content", "createdAt", "post"], 12 "properties": { 13 "content": { 14 "type": "string", 15 "maxLength": 100000, 16 "maxGraphemes": 10000, 17 "description": "The content of the comment." 18 }, 19 "createdAt": { 20 "type": "string", 21 "format": "datetime", 22 "description": "Client-declared timestamp when this comment was originally created." 23 }, 24 "parent": { "type": "ref", "ref": "com.atproto.repo.strongRef" }, 25 "post": { "type": "ref", "ref": "com.atproto.repo.strongRef" } 26 } 27 } 28 } 29 } 30}