org.hypercerts.claim.contributorInformation
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.contributorInformation:body.signatures" }
- AddedEdge AddedEdge { src: "org.hypercerts.claim.contributorInformation:body", tgt: "org.hypercerts.claim.contributorInformation:body.signatures", kind: "prop", name: Some("signatures") }
- AddedEdge AddedEdge { src: "org.hypercerts.claim.contributorInformation: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.contributorInformation:body.signatures" }
Additional Notes
- Non-breaking: AddedEdge { src: "org.hypercerts.claim.contributorInformation:body", tgt: "org.hypercerts.claim.contributorInformation:body.signatures", kind: "prop", name: Some("signatures") }
- Non-breaking: AddedEdge { src: "org.hypercerts.claim.contributorInformation:body.signatures", tgt: "app.certified.signature.defs#list", kind: "ref", name: None }
1
1
{
2
2
"id": "org.hypercerts.claim.contributorInformation",
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
"image": {
14
14
"refs": [
15
15
"org.hypercerts.defs#uri",
16
16
"org.hypercerts.defs#smallImage"
17
17
],
18
18
"type": "union",
19
19
"description": "The contributor visual representation as a URI or image blob."
20
20
},
21
21
"createdAt": {
22
22
"type": "string",
23
23
"format": "datetime",
24
24
"description": "Client-declared timestamp when this record was originally created."
25
25
},
26
26
"identifier": {
27
27
"type": "string",
28
28
"maxLength": 2048,
29
29
"description": "DID (did:plc:...) or URI to a social profile of the contributor."
30
30
},
31
+
"signatures": {
32
+
"ref": "app.certified.signature.defs#list",
33
+
"type": "ref",
34
+
"description": "Optional cryptographic signatures attesting to this record's content."
35
+
},
31
36
"displayName": {
32
37
"type": "string",
33
38
"maxLength": 100,
34
39
"description": "Human-readable name for the contributor as it should appear in UI."
35
40
}
36
41
}
37
42
},
38
43
"description": "Contributor information including identifier, display name, and image."
39
44
}
40
45
},
41
46
"$type": "com.atproto.lexicon.schema",
42
47
"lexicon": 1
43
48
}