# com.publicdomainrelay.temp.market.offering

> Published by [johnandersen777.bsky.social](https://lexicon.garden/identity/did:plc:5svqtrhheairglgiiyvutzik)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:5svqtrhheairglgiiyvutzik/com.publicdomainrelay.temp.market.offering)
- [Documentation](https://lexicon.garden/lexicon/did:plc:5svqtrhheairglgiiyvutzik/com.publicdomainrelay.temp.market.offering/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:5svqtrhheairglgiiyvutzik/com.publicdomainrelay.temp.market.offering/examples)

## Definitions

### `com.publicdomainrelay.temp.market.offering`

**Type**: `record`

Declares that a bidder is willing to submit bids for RFPs whose payload NSID is in appliesTo. The bidder's market service DID reference (for submitRfp via PDS proxying) is given by endpointUrl.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `appliesTo` | `array` | Yes | List of payload NSIDs this bidder handles (e.g. com.publicdomainrelay.temp.compute.vm). |
| `createdAt` | `string` (datetime) | Yes |  |
| `endpointUrl` | `string` | Yes | Service DID reference (did:web:HOST#temp_market) of the bidder's market service. RFP issuers call com.publicdomainrelay.temp.market.submitRfp via PDS service-proxying using this value as the atproto-proxy target. |

## Raw Schema

```json
{
  "id": "com.publicdomainrelay.temp.market.offering",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "endpointUrl",
          "appliesTo",
          "createdAt"
        ],
        "properties": {
          "appliesTo": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "nsid"
            },
            "minLength": 1,
            "description": "List of payload NSIDs this bidder handles (e.g. com.publicdomainrelay.temp.compute.vm)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "endpointUrl": {
            "type": "string",
            "description": "Service DID reference (did:web:HOST#temp_market) of the bidder's market service. RFP issuers call com.publicdomainrelay.temp.market.submitRfp via PDS service-proxying using this value as the atproto-proxy target."
          }
        }
      },
      "description": "Declares that a bidder is willing to submit bids for RFPs whose payload NSID is in appliesTo. The bidder's market service DID reference (for submitRfp via PDS proxying) is given by endpointUrl."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
