farm.lore.content
Schema Diff
+2 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "farm.lore.content",
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
"world",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"world": {
16
16
"type": "string",
17
17
"maxLength": 253,
18
18
"description": "The world domain this content belongs to."
19
19
},
20
20
"subject": {
21
21
"ref": "com.atproto.repo.strongRef",
22
22
"type": "ref",
23
23
"description": "Reference to the Bluesky post being declared as lore."
24
24
},
25
25
"createdAt": {
26
26
"type": "string",
27
27
"format": "datetime",
28
28
"description": "Timestamp of the lore declaration."
29
29
}
30
30
}
31
31
},
32
32
"description": "Declares a Bluesky post as lore for a specific world. The subject references the post being declared as lore."
33
33
}
34
34
},
35
35
"$type": "com.atproto.lexicon.schema",
36
-
"lexicon": 1
36
+
"lexicon": 1,
37
+
"description": "A post declared as lore for a world."
37
38
}