com.publicdomainrelay.temp.market.rfp
Schema Diff
+9 -3
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 4 non-breaking changes.
Breaking Changes (2)
- RemovedVertex RemovedVertex { vertex_id: "com.publicdomainrelay.temp.market.rfp:body.sendBid" }
- RemovedEdge RemovedEdge { src: "com.publicdomainrelay.temp.market.rfp:body", tgt: "com.publicdomainrelay.temp.market.rfp:body.sendBid", kind: "prop", name: Some("sendBid") }
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.rfp:body.signatures" }
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.rfp:body.submitBid" }
- AddedEdge AddedEdge { src: "com.publicdomainrelay.temp.market.rfp:body", tgt: "com.publicdomainrelay.temp.market.rfp:body.signatures", kind: "prop", name: Some("signatures") }
- AddedEdge AddedEdge { src: "com.publicdomainrelay.temp.market.rfp:body", tgt: "com.publicdomainrelay.temp.market.rfp:body.submitBid", kind: "prop", name: Some("submitBid") }
Migration Guidance
Removed Elements
RemovedVertex { vertex_id: "com.publicdomainrelay.temp.market.rfp:body.sendBid" }
Added Elements
AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.rfp:body.signatures" }AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.rfp:body.submitBid" }
Additional Notes
- Breaking: RemovedEdge { src: "com.publicdomainrelay.temp.market.rfp:body", tgt: "com.publicdomainrelay.temp.market.rfp:body.sendBid", kind: "prop", name: Some("sendBid") }
- Non-breaking: AddedEdge { src: "com.publicdomainrelay.temp.market.rfp:body", tgt: "com.publicdomainrelay.temp.market.rfp:body.signatures", kind: "prop", name: Some("signatures") }
- Non-breaking: AddedEdge { src: "com.publicdomainrelay.temp.market.rfp:body", tgt: "com.publicdomainrelay.temp.market.rfp:body.submitBid", kind: "prop", name: Some("submitBid") }
1
1
{
2
2
"id": "com.publicdomainrelay.temp.market.rfp",
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
-
"payload"
10
+
"payload",
11
+
"signatures"
11
12
],
12
13
"properties": {
13
14
"payload": {
14
15
"ref": "com.atproto.repo.strongRef",
15
16
"type": "ref",
16
17
"description": "Strong reference to the domain-specific payload record (for example a com.publicdomainrelay.temp.compute.vm)."
17
18
},
18
-
"sendBid": {
19
+
"submitBid": {
19
20
"type": "string",
20
-
"description": "Endpoint to send AT-URI and CID of bid to. Optional but bypasses need for bids to be seen in firehose since they are sent directly"
21
+
"description": "Service DID reference (did:web:HOST#temp_market) of the RFP issuer's market service. Optional; bypasses the need for bids to be seen in the firehose. The bidder calls com.publicdomainrelay.temp.market.submitBid via PDS service-proxying using this value as the atproto-proxy target."
22
+
},
23
+
"signatures": {
24
+
"ref": "network.attested.signature#signatures",
25
+
"type": "ref",
26
+
"description": "badge.blue attestations over this RFP. Must include the issuer's inline signature, attached at creation (before any bid strongRefs this record); post-hoc third-party attestations use remote network.attested.signature proof records instead, so the RFP's CID stays stable."
21
27
}
22
28
}
23
29
},
24
30
"description": "Top-level Request For Proposal (RFP). Envelope that strongRefs a domain-specific payload (e.g. compute.vm)."
25
31
}
26
32
},
27
33
"$type": "com.atproto.lexicon.schema",
28
34
"lexicon": 1
29
35
}