com.publicdomainrelay.temp.market.rfp
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.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
Added Elements
AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.rfp:body.signatures" }AddedVertex { vertex_id: "com.publicdomainrelay.temp.market.rfp:body.submitBid" }
Additional Notes
- 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)."
18
+
},
19
+
"submitBid": {
20
+
"type": "string",
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."
17
27
}
18
28
}
19
29
},
20
30
"description": "Top-level Request For Proposal (RFP). Envelope that strongRefs a domain-specific payload (e.g. compute.vm)."
21
31
}
22
32
},
23
33
"$type": "com.atproto.lexicon.schema",
24
34
"lexicon": 1
25
35
}