# org.swappulse.wishlist

> Published by [bridge.swappulse.org](https://lexicon.garden/identity/did:plc:jwoatauidzr4lollmro2gh35)

## Description

A card a collector wants to acquire, mirrored to AT Protocol as a real org.swappulse.wishlist record. Enables cross-instance trade matching.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.wishlist)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.wishlist/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.wishlist/examples)

## Definitions

### `org.swappulse.wishlist`

**Type**: `record`

A wishlist entry for a wanted card.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `rarity` | `string` | No |  |
| `cardUri` | `string` | Yes |  |
| `setCode` | `string` | No |  |
| `setName` | `string` | No |  |
| `cardName` | `string` | Yes |  |
| `imageUrl` | `string` (uri) | No |  |
| `maxPrice` | `number` | No |  |
| `ownerDid` | `string` (did) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "org.swappulse.wishlist",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "cardUri",
          "cardName",
          "createdAt"
        ],
        "properties": {
          "rarity": {
            "type": "string"
          },
          "cardUri": {
            "type": "string"
          },
          "setCode": {
            "type": "string"
          },
          "setName": {
            "type": "string"
          },
          "cardName": {
            "type": "string"
          },
          "imageUrl": {
            "type": "string",
            "format": "uri"
          },
          "maxPrice": {
            "type": "number"
          },
          "ownerDid": {
            "type": "string",
            "format": "did"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A wishlist entry for a wanted card."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "A card a collector wants to acquire, mirrored to AT Protocol as a real org.swappulse.wishlist record. Enables cross-instance trade matching."
}
```
