com.publicdomainrelay.temp.market.event
Schema Diff
+7 -1
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.event:body.signatures" }
- AddedEdge AddedEdge { src: "com.publicdomainrelay.temp.market.event:body", tgt: "com.publicdomainrelay.temp.market.event:body.signatures", kind: "prop", name: Some("signatures") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.event:body.signatures" }
Additional Notes
- Non-breaking: AddedEdge { src: "com.publicdomainrelay.temp.market.event:body", tgt: "com.publicdomainrelay.temp.market.event:body.signatures", kind: "prop", name: Some("signatures") }
1
1
{
2
2
"id": "com.publicdomainrelay.temp.market.event",
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
"receipt",
11
-
"payload"
11
+
"payload",
12
+
"signatures"
12
13
],
13
14
"properties": {
14
15
"payload": {
15
16
"ref": "com.atproto.repo.strongRef",
16
17
"type": "ref",
17
18
"description": "Strong reference to the domain-specific event payload record (for example a com.publicdomainrelay.temp.compute.events.vm.started, .onNetwork, or .delete)."
18
19
},
19
20
"receipt": {
20
21
"ref": "com.atproto.repo.strongRef",
21
22
"type": "ref",
22
23
"description": "Strong reference to the receipt record this event pertains to (for example a com.publicdomainrelay.temp.market.receipt), so the counterparty can map the event back to the resource it provisioned."
24
+
},
25
+
"signatures": {
26
+
"ref": "network.attested.signature#signatures",
27
+
"type": "ref",
28
+
"description": "badge.blue attestations over this event. Must include the reporting party's inline signature, attached at creation, making the lifecycle claim non-repudiable — events assert facts about resources the counterparty cannot observe itself."
23
29
}
24
30
}
25
31
},
26
32
"description": "A lifecycle event reported against a receipt (e.g. a provider-opaque resource like a VM coming up, joining the network, or needing to be deleted)."
27
33
}
28
34
},
29
35
"$type": "com.atproto.lexicon.schema",
30
36
"lexicon": 1
31
37
}