org.hypercerts.claim.contributorInformation
Schema Diff
+3 -2
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 0 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "org.hypercerts.claim.contributorInformation:body.identifier", sort: "maxLength", value: "2048" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "org.hypercerts.claim.contributorInformation:body.identifier", sort: "maxLength", value: "2048" }
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
-
"description": "DID or a URI to a social profile of the contributor."
28
+
"maxLength": 2048,
29
+
"description": "DID (did:plc:...) or URI to a social profile of the contributor."
29
30
},
30
31
"displayName": {
31
32
"type": "string",
32
33
"maxLength": 100,
33
-
"description": "Display name of the contributor."
34
+
"description": "Human-readable name for the contributor as it should appear in UI."
34
35
}
35
36
}
36
37
},
37
38
"description": "Contributor information including identifier, display name, and image."
38
39
}
39
40
},
40
41
"$type": "com.atproto.lexicon.schema",
41
42
"lexicon": 1
42
43
}