org.hypercerts.claim.contribution
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 4 non-breaking changes.
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "app.certified.signature.defs#list" }
- AddedVertex AddedVertex { vertex_id: "org.hypercerts.claim.contribution:body.signatures" }
- AddedEdge AddedEdge { src: "org.hypercerts.claim.contribution:body", tgt: "org.hypercerts.claim.contribution:body.signatures", kind: "prop", name: Some("signatures") }
- AddedEdge AddedEdge { src: "org.hypercerts.claim.contribution:body.signatures", tgt: "app.certified.signature.defs#list", kind: "ref", name: None }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "app.certified.signature.defs#list" }AddedVertex { vertex_id: "org.hypercerts.claim.contribution:body.signatures" }
Additional Notes
- Non-breaking: AddedEdge { src: "org.hypercerts.claim.contribution:body", tgt: "org.hypercerts.claim.contribution:body.signatures", kind: "prop", name: Some("signatures") }
- Non-breaking: AddedEdge { src: "org.hypercerts.claim.contribution:body.signatures", tgt: "app.certified.signature.defs#list", kind: "ref", name: None }
1
1
{
2
2
"id": "org.hypercerts.claim.contribution",
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
"createdAt"
11
11
],
12
12
"properties": {
13
13
"role": {
14
14
"type": "string",
15
15
"maxLength": 100,
16
16
"description": "Role or title of the contributor."
17
17
},
18
18
"endDate": {
19
19
"type": "string",
20
20
"format": "datetime",
21
21
"description": "When this contribution finished. Should fall within the parent hypercert's timeframe."
22
22
},
23
23
"createdAt": {
24
24
"type": "string",
25
25
"format": "datetime",
26
26
"description": "Client-declared timestamp when this record was originally created."
27
27
},
28
28
"startDate": {
29
29
"type": "string",
30
30
"format": "datetime",
31
31
"description": "When this contribution started. Should fall within the parent hypercert's timeframe."
32
32
},
33
+
"signatures": {
34
+
"ref": "app.certified.signature.defs#list",
35
+
"type": "ref",
36
+
"description": "Optional cryptographic signatures attesting to this record's content."
37
+
},
33
38
"contributionDescription": {
34
39
"type": "string",
35
40
"maxLength": 10000,
36
41
"description": "Description of what the contribution concretely involved.",
37
42
"maxGraphemes": 1000
38
43
}
39
44
}
40
45
},
41
46
"description": "Details about a specific contribution including role, description, and timeframe."
42
47
}
43
48
},
44
49
"$type": "com.atproto.lexicon.schema",
45
50
"lexicon": 1
46
51
}