Files
bsky-social-app/lexicons/app/bsky/feed/repost.json

30 lines
666 B
JSON

{
"lexicon": 1,
"id": "app.bsky.feed.repost",
"defs": {
"main": {
"description": "Record representing a 'repost' of an existing Bluesky post.",
"type": "record",
"key": "tid",
"record": {
"type": "object",
"required": ["subject", "createdAt"],
"properties": {
"subject": {
"type": "ref",
"ref": "com.atproto.repo.strongRef"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"via": {
"type": "ref",
"ref": "com.atproto.repo.strongRef"
}
}
}
}
}
}