farm.lore.remove
Schema Diff
+2 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "farm.lore.remove",
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 the content is being removed from."
19
19
},
20
20
"reason": {
21
21
"type": "string",
22
22
"maxLength": 1024,
23
23
"description": "Optional reason for the removal."
24
24
},
25
25
"subject": {
26
26
"ref": "com.atproto.repo.strongRef",
27
27
"type": "ref",
28
28
"description": "Reference to the content being removed."
29
29
},
30
30
"createdAt": {
31
31
"type": "string",
32
32
"format": "datetime",
33
33
"description": "Timestamp of the removal request."
34
34
}
35
35
}
36
36
},
37
37
"description": "Requests removal of a piece of content from a world's lore or canon. Only curators may create removal records."
38
38
}
39
39
},
40
40
"$type": "com.atproto.lexicon.schema",
41
-
"lexicon": 1
41
+
"lexicon": 1,
42
+
"description": "A request to remove content from a world."
42
43
}