at.atjam.signup
Schema Diff
+6 -1
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "at.atjam.signup:body.invitation" }
- AddedEdge AddedEdge { src: "at.atjam.signup:body", tgt: "at.atjam.signup:body.invitation", kind: "prop", name: Some("invitation") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "at.atjam.signup:body.invitation" }
Additional Notes
- Non-breaking: AddedEdge { src: "at.atjam.signup:body", tgt: "at.atjam.signup:body.invitation", kind: "prop", name: Some("invitation") }
1
1
{
2
2
"id": "at.atjam.signup",
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
"round",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"note": {
15
15
"type": "string",
16
16
"maxLength": 3000,
17
17
"description": "Optional note from the participant (e.g. what they plan to do).",
18
18
"maxGraphemes": 300
19
19
},
20
20
"round": {
21
21
"ref": "com.atproto.repo.strongRef",
22
22
"type": "ref",
23
23
"description": "Strong-ref to the at.atjam.round record."
24
24
},
25
25
"createdAt": {
26
26
"type": "string",
27
27
"format": "datetime"
28
+
},
29
+
"invitation": {
30
+
"ref": "com.atproto.repo.strongRef",
31
+
"type": "ref",
32
+
"description": "Strong-ref to an at.atjam.invitation that authorizes this signup. Required by readers when round.joinMode is 'hosted' or 'network'; ignored when 'open'. The invitation's invitee DID MUST match this signup's creator DID — consumers validate this relationship."
28
33
}
29
34
}
30
35
},
31
36
"description": "Declares the record creator's intent to participate in the referenced round."
32
37
}
33
38
},
34
39
"$type": "com.atproto.lexicon.schema",
35
40
"lexicon": 1,
36
-
"description": "A declaration of intent to participate in a specific round. The participant's DID is implicit (the record creator)."
41
+
"description": "A declaration of intent to participate in a specific round. The participant's DID is implicit (the record creator). When the round's joinMode is 'hosted' or 'network', a signup is only valid for readers when it strong-refs an at.atjam.invitation written by a valid inviter."
37
42
}