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