com.publicdomainrelay.temp.market.offering
Schema Diff
+2 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.publicdomainrelay.temp.market.offering",
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
"endpointUrl",
11
11
"appliesTo",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"appliesTo": {
16
16
"type": "array",
17
17
"items": {
18
-
"type": "string"
18
+
"type": "string",
19
+
"format": "nsid"
19
20
},
20
21
"minLength": 1,
21
22
"description": "List of payload NSIDs this bidder handles (e.g. com.publicdomainrelay.temp.compute.vm)."
22
23
},
23
24
"createdAt": {
24
25
"type": "string",
25
26
"format": "datetime"
26
27
},
27
28
"endpointUrl": {
28
29
"type": "string",
29
30
"format": "uri",
30
31
"description": "Base URL of the bidder service. POST /xrpc/com.publicdomainrelay.temp.market.submitRfp will be called here."
31
32
}
32
33
}
33
34
},
34
35
"description": "Declares that a bidder is willing to submit bids for RFPs whose payload NSID is in appliesTo. The bidder's submitRfp endpoint is given by endpointUrl."
35
36
}
36
37
},
37
38
"$type": "com.atproto.lexicon.schema",
38
39
"lexicon": 1
39
40
}