This repository has no description
791 B
28 lines
1{
2 "id": "network.cosmik.follow",
3 "defs": {
4 "main": {
5 "key": "tid",
6 "type": "record",
7 "record": {
8 "type": "object",
9 "required": ["subject", "createdAt"],
10 "properties": {
11 "subject": {
12 "type": "string",
13 "description": "DID of the user being followed, or AT URI of the collection being followed"
14 },
15 "createdAt": {
16 "type": "string",
17 "format": "datetime",
18 "description": "Timestamp when this follow was created."
19 }
20 }
21 },
22 "description": "A record representing a follow of a user or collection."
23 }
24 },
25 "$type": "com.atproto.lexicon.schema",
26 "lexicon": 1,
27 "description": "A record representing a follow relationship."
28}