com.publicdomainrelay.temp.market.bid
Schema Diff
+17 -2
Compatibility Analysis
Backward Compatible
Backward compatible. 6 non-breaking changes.
Non-Breaking Changes (6)
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.bid:body.config" }
- 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.config", kind: "prop", name: Some("config") }
- 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.config" }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.config", kind: "prop", name: Some("config") }
- 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
},
20
+
"config": {
21
+
"ref": "com.atproto.repo.strongRef",
22
+
"type": "ref",
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)."
24
+
},
19
25
"payload": {
20
26
"ref": "com.atproto.repo.strongRef",
21
27
"type": "ref",
22
-
"description": "Strong reference to the bid record (for example a com.publicdomainrelay.temp.bid.x402)."
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."
23
38
}
24
39
}
25
40
},
26
41
"description": "A bid on an RFP"
27
42
}
28
43
},
29
44
"$type": "com.atproto.lexicon.schema",
30
45
"lexicon": 1
31
46
}