com.publicdomainrelay.temp.market.bid
Schema Diff
+11 -1
Compatibility Analysis
Backward Compatible
Backward compatible. 4 non-breaking changes.
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.bid:body.signatures" }
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.bid:body.submitAccept" }
- AddedEdge AddedEdge { src: "com.publicdomainrelay.temp.market.bid:body", tgt: "com.publicdomainrelay.temp.market.bid:body.signatures", kind: "prop", name: Some("signatures") }
- AddedEdge AddedEdge { src: "com.publicdomainrelay.temp.market.bid:body", tgt: "com.publicdomainrelay.temp.market.bid:body.submitAccept", kind: "prop", name: Some("submitAccept") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.bid:body.signatures" }AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.bid:body.submitAccept" }
Additional Notes
- Non-breaking: AddedEdge { src: "com.publicdomainrelay.temp.market.bid:body", tgt: "com.publicdomainrelay.temp.market.bid:body.signatures", kind: "prop", name: Some("signatures") }
- Non-breaking: AddedEdge { src: "com.publicdomainrelay.temp.market.bid:body", tgt: "com.publicdomainrelay.temp.market.bid:body.submitAccept", kind: "prop", name: Some("submitAccept") }
1
1
{
2
2
"id": "com.publicdomainrelay.temp.market.bid",
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
-
"payload"
11
+
"payload",
12
+
"signatures"
12
13
],
13
14
"properties": {
14
15
"rfp": {
15
16
"ref": "com.atproto.repo.strongRef",
16
17
"type": "ref",
17
18
"description": "Strong reference to the rfp record (for example a com.publicdomainrelay.temp.market.rfp)."
18
19
},
19
20
"config": {
20
21
"ref": "com.atproto.repo.strongRef",
21
22
"type": "ref",
22
23
"description": "Strong reference to any config information that needs to be processed by rfp actor prior to bid accept (for example a com.publicdomainrelay.temp.compute.config.wif.simple)."
23
24
},
24
25
"payload": {
25
26
"ref": "com.atproto.repo.strongRef",
26
27
"type": "ref",
27
28
"description": "Strong reference to the bid record (for example a com.publicdomainrelay.temp.market.bids.x402)."
29
+
},
30
+
"signatures": {
31
+
"ref": "network.attested.signature#signatures",
32
+
"type": "ref",
33
+
"description": "badge.blue attestations over this bid. Must include the bidder's inline signature, attached at creation (before any accept strongRefs this record); post-hoc third-party attestations use remote network.attested.signature proof records instead, so the bid's CID stays stable."
34
+
},
35
+
"submitAccept": {
36
+
"type": "string",
37
+
"description": "Service DID reference (did:web:HOST#temp_market) of the bidder's market service. Once the requester has settled payment (via the x402 flow named in the bids.x402 payload) and minted a com.publicdomainrelay.temp.market.accept, it calls com.publicdomainrelay.temp.market.submitAccept via PDS service-proxying using this value as the atproto-proxy target to provision the resource and obtain a com.publicdomainrelay.temp.market.receipt."
28
38
}
29
39
}
30
40
},
31
41
"description": "A bid on an RFP"
32
42
}
33
43
},
34
44
"$type": "com.atproto.lexicon.schema",
35
45
"lexicon": 1
36
46
}