farm.lore.curator
Schema Diff
+2 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "farm.lore.curator",
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
"world",
11
11
"subject",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"role": {
16
16
"type": "string",
17
17
"maxLength": 256,
18
18
"description": "Optional role title for the curator."
19
19
},
20
20
"world": {
21
21
"type": "string",
22
22
"maxLength": 253,
23
23
"description": "The world domain this curator appointment applies to."
24
24
},
25
25
"subject": {
26
26
"type": "string",
27
27
"format": "did",
28
28
"description": "The DID of the user being appointed as curator."
29
29
},
30
30
"createdAt": {
31
31
"type": "string",
32
32
"format": "datetime",
33
33
"description": "Timestamp of the appointment."
34
34
}
35
35
}
36
36
},
37
37
"description": "Endorses a user as a curator (loremaster) for a world. Written by the world owner to grant curator privileges."
38
38
}
39
39
},
40
40
"$type": "com.atproto.lexicon.schema",
41
-
"lexicon": 1
41
+
"lexicon": 1,
42
+
"description": "A curator appointment for a world."
42
43
}