dev.tsunagite.profile
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "dev.tsunagite.profile:body.game" }
- AddedEdge AddedEdge { src: "dev.tsunagite.profile:body", tgt: "dev.tsunagite.profile:body.game", kind: "prop", name: Some("game") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "dev.tsunagite.profile:body.game" }
Additional Notes
- Non-breaking: AddedEdge { src: "dev.tsunagite.profile:body", tgt: "dev.tsunagite.profile:body.game", kind: "prop", name: Some("game") }
1
1
{
2
2
"id": "dev.tsunagite.profile",
3
3
"defs": {
4
4
"main": {
5
5
"key": "nsid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
+
"game",
10
11
"displayName"
11
12
],
12
13
"properties": {
14
+
"game": {
15
+
"type": "string",
16
+
"format": "at-uri",
17
+
"description": "The URI of the game this profile is for."
18
+
},
13
19
"displayName": {
14
20
"type": "string",
15
21
"maxLength": 500,
16
22
"minLength": 1,
17
23
"description": "The display name for the player on leaderboards.",
18
24
"maxGraphemes": 50
19
25
}
20
26
}
21
27
},
22
28
"description": "The player profile for a given game, determined by an NSID of the game publisher's handle succeeded by the game's key."
23
29
}
24
30
},
25
31
"$type": "com.atproto.lexicon.schema",
26
32
"lexicon": 1,
27
33
"description": "Definitions related to player profiles in games hosting leaderboards via Tsunagite."
28
34
}