com.publicdomainrelay.temp.market.accept
Schema Diff
+12 -3
Compatibility Analysis
Backward Compatible
Backward compatible. 4 non-breaking changes.
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.accept:body.signatures" }
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.accept:body.submitEvent" }
- AddedEdge AddedEdge { src: "com.publicdomainrelay.temp.market.accept:body", tgt: "com.publicdomainrelay.temp.market.accept:body.signatures", kind: "prop", name: Some("signatures") }
- AddedEdge AddedEdge { src: "com.publicdomainrelay.temp.market.accept:body", tgt: "com.publicdomainrelay.temp.market.accept:body.submitEvent", kind: "prop", name: Some("submitEvent") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.accept:body.signatures" }AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.accept:body.submitEvent" }
Additional Notes
- Non-breaking: AddedEdge { src: "com.publicdomainrelay.temp.market.accept:body", tgt: "com.publicdomainrelay.temp.market.accept:body.signatures", kind: "prop", name: Some("signatures") }
- Non-breaking: AddedEdge { src: "com.publicdomainrelay.temp.market.accept:body", tgt: "com.publicdomainrelay.temp.market.accept:body.submitEvent", kind: "prop", name: Some("submitEvent") }
1
1
{
2
2
"id": "com.publicdomainrelay.temp.market.accept",
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
"rfp",
11
11
"bid",
12
-
"payload"
12
+
"signatures"
13
13
],
14
14
"properties": {
15
15
"bid": {
16
16
"ref": "com.atproto.repo.strongRef",
17
17
"type": "ref",
18
-
"description": "Strong reference to the bid record (for example a com.publicdomainrelay.temp.bid.x402)."
18
+
"description": "Strong reference to the bid record (for example a com.publicdomainrelay.temp.market.bid.x402)."
19
19
},
20
20
"rfp": {
21
21
"ref": "com.atproto.repo.strongRef",
22
22
"type": "ref",
23
23
"description": "Strong reference to the rfp record (for example a com.publicdomainrelay.temp.market.rfp)."
24
24
},
25
25
"payload": {
26
26
"ref": "com.atproto.repo.strongRef",
27
27
"type": "ref",
28
-
"description": "Strong reference to the accept record (for example a com.publicdomainrelay.temp.accept.x402)."
28
+
"description": "Strong reference to the proof-of-payment record returned by the bid's payment flow (for example a com.publicdomainrelay.temp.market.receipts.x402 obtained from the x402 GET against the bids.x402 url). The bidder verifies this before provisioning."
29
+
},
30
+
"signatures": {
31
+
"ref": "network.attested.signature#signatures",
32
+
"type": "ref",
33
+
"description": "badge.blue attestations over this accept. Must include the requester's inline signature, attached at creation. The bidder's side of the bilateral agreement is its proof-of-settlement record (the accept's payload) and the market.receipt it mints on submitAccept, both of which are badge.blue remote attestations bound to this record."
34
+
},
35
+
"submitEvent": {
36
+
"type": "string",
37
+
"description": "Service DID reference (did:web:HOST#compute_event) of the RFP issuer's compute-event service. Optional; bypasses the need for events to be seen in the firehose. The counterparty calls com.publicdomainrelay.temp.market.submitEvent via PDS service-proxying using this value as the atproto-proxy target."
29
38
}
30
39
}
31
40
},
32
41
"description": "Acceptance of a bid on an RFP"
33
42
}
34
43
},
35
44
"$type": "com.atproto.lexicon.schema",
36
45
"lexicon": 1
37
46
}