farm.lore.character
Schema Diff
+2 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "farm.lore.character",
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
"createdAt"
12
12
],
13
13
"properties": {
14
14
"name": {
15
15
"type": "string",
16
16
"maxLength": 256,
17
17
"description": "Optional character name or alias within the world."
18
18
},
19
19
"world": {
20
20
"type": "string",
21
21
"maxLength": 253,
22
22
"description": "The world domain the character is joining."
23
23
},
24
24
"createdAt": {
25
25
"type": "string",
26
26
"format": "datetime",
27
27
"description": "Timestamp of character registration."
28
28
}
29
29
}
30
30
},
31
31
"description": "Registers the user as a character (participant) in a world. Grants eligibility for lore and canon applications."
32
32
}
33
33
},
34
34
"$type": "com.atproto.lexicon.schema",
35
-
"lexicon": 1
35
+
"lexicon": 1,
36
+
"description": "A character joining a world."
36
37
}