A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/feed-generator 29 lines 616 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.like", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A declaration of a like.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": [ 12 "createdAt", 13 "subject" 14 ], 15 "properties": { 16 "createdAt": { 17 "type": "string", 18 "description": "The date when the like was created.", 19 "format": "datetime" 20 }, 21 "subject": { 22 "type": "ref", 23 "ref": "com.atproto.repo.strongRef" 24 } 25 } 26 } 27 } 28 } 29}