org.atpodcasting.follow
Schema Diff
+3 -3
1
1
{
2
2
"id": "org.atpodcasting.follow",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"subject",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"subject": {
15
-
"type": "string",
16
-
"format": "at-uri",
17
-
"description": "AT URI of the podcast record being followed."
15
+
"ref": "org.atpodcasting.defs#podcastRef",
16
+
"type": "ref",
17
+
"description": "The podcast being followed."
18
18
},
19
19
"createdAt": {
20
20
"type": "string",
21
21
"format": "datetime",
22
22
"description": "When the follow was created."
23
23
}
24
24
}
25
25
},
26
26
"description": "A personal expression of interest in a podcast, stored in the follower's own repository and portable across applications. This record does not define notification behavior, feed inclusion, ranking, or metrics — it captures follow intent only."
27
27
}
28
28
},
29
29
"$type": "com.atproto.lexicon.schema",
30
30
"lexicon": 1
31
31
}