Files
bsky-social-app/lexicons/app/bsky/graph/follow.json

30 lines
708 B
JSON

{
"lexicon": 1,
"id": "app.bsky.graph.follow",
"defs": {
"main": {
"type": "record",
"description": "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.",
"key": "tid",
"record": {
"type": "object",
"required": ["subject", "createdAt"],
"properties": {
"subject": {
"type": "string",
"format": "did"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"via": {
"type": "ref",
"ref": "com.atproto.repo.strongRef"
}
}
}
}
}
}