org.hypercerts.context.acknowledgement
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.context.acknowledgement:body.signatures" }
- AddedEdge AddedEdge { src: "org.hypercerts.context.acknowledgement:body", tgt: "org.hypercerts.context.acknowledgement:body.signatures", kind: "prop", name: Some("signatures") }
- AddedEdge AddedEdge { src: "org.hypercerts.context.acknowledgement: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.context.acknowledgement:body.signatures" }
Additional Notes
- Non-breaking: AddedEdge { src: "org.hypercerts.context.acknowledgement:body", tgt: "org.hypercerts.context.acknowledgement:body.signatures", kind: "prop", name: Some("signatures") }
- Non-breaking: AddedEdge { src: "org.hypercerts.context.acknowledgement:body.signatures", tgt: "app.certified.signature.defs#list", kind: "ref", name: None }
1
1
{
2
2
"id": "org.hypercerts.context.acknowledgement",
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
"subject",
11
11
"acknowledged",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"comment": {
16
16
"type": "string",
17
17
"maxLength": 10000,
18
18
"description": "Optional plain-text comment providing additional context or reasoning.",
19
19
"maxGraphemes": 1000
20
20
},
21
21
"context": {
22
22
"refs": [
23
23
"org.hypercerts.defs#uri",
24
24
"com.atproto.repo.strongRef"
25
25
],
26
26
"type": "union",
27
27
"description": "Context for the acknowledgement (e.g. the collection that includes an activity, or the activity that includes a contributor). A URI for a lightweight reference or a strong reference for content-hash verification."
28
28
},
29
29
"subject": {
30
30
"ref": "com.atproto.repo.strongRef",
31
31
"type": "ref",
32
32
"description": "The record being acknowledged (e.g. an activity, a contributor information record, an evaluation)."
33
33
},
34
34
"createdAt": {
35
35
"type": "string",
36
36
"format": "datetime",
37
37
"description": "Client-declared timestamp when this record was originally created."
38
38
},
39
+
"signatures": {
40
+
"ref": "app.certified.signature.defs#list",
41
+
"type": "ref",
42
+
"description": "Optional cryptographic signatures attesting to this record's content."
43
+
},
39
44
"acknowledged": {
40
45
"type": "boolean",
41
46
"description": "Whether the relationship is acknowledged (true) or rejected (false)."
42
47
}
43
48
}
44
49
},
45
50
"description": "Acknowledges a record (subject) or its relationship in a context. Created in the acknowledging actor's repo to form a bidirectional link. Examples: a contributor acknowledging inclusion in an activity, an activity owner acknowledging inclusion in a collection, or a record owner acknowledging an evaluation."
46
51
}
47
52
},
48
53
"$type": "com.atproto.lexicon.schema",
49
54
"lexicon": 1
50
55
}