a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
at major 25 lines 484 B view raw
1{ 2 "lexicon": 1, 3 "id": "community.lexicon.interaction.like", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A 'like' interaction with another AT Protocol record.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": ["subject", "createdAt"], 12 "properties": { 13 "subject": { 14 "type": "ref", 15 "ref": "com.atproto.repo.strongRef" 16 }, 17 "createdAt": { 18 "type": "string", 19 "format": "datetime" 20 } 21 } 22 } 23 } 24 } 25}