# org.swappulse.collectionEntry

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

## Description

A Pokémon TCG card held in a collector's digital binder. Mirrored from the SwapPulse CollectionEntry entity so collection state is portable across PDSs.

## Links

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

## Definitions

### `org.swappulse.collectionEntry`

**Type**: `record`

A single card entry in a collector's collection.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `notes` | `string` | No |  |
| `rarity` | `string` | No |  |
| `cardUri` | `string` | Yes | TCGDex card id (canonical reference to the catalog record) |
| `setCode` | `string` | No | Canonical TCGDex set id (e.g. sv04.5) |
| `setName` | `string` | No |  |
| `variant` | `string` | No |  |
| `cardName` | `string` | Yes |  |
| `category` | `string` | No |  |
| `imageUrl` | `string` (uri) | No |  |
| `authorDid` | `string` (did) | No |  |
| `condition` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `showcased` | `boolean` | No |  |
| `authorName` | `string` | No |  |
| `cardNumber` | `string` | No | Card number within the set |
| `binderIndex` | `integer` | No |  |
| `marketValue` | `number` | No |  |
| `authorAvatar` | `string` (uri) | No |  |
| `authorHandle` | `string` | No |  |
| `purchasePrice` | `number` | No |  |
| `acquisitionDate` | `string` (date) | No |  |

## Raw Schema

```json
{
  "id": "org.swappulse.collectionEntry",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "cardUri",
          "cardName",
          "createdAt"
        ],
        "properties": {
          "notes": {
            "type": "string",
            "maxLength": 500
          },
          "rarity": {
            "type": "string"
          },
          "cardUri": {
            "type": "string",
            "description": "TCGDex card id (canonical reference to the catalog record)"
          },
          "setCode": {
            "type": "string",
            "description": "Canonical TCGDex set id (e.g. sv04.5)"
          },
          "setName": {
            "type": "string"
          },
          "variant": {
            "type": "string",
            "knownValues": [
              "normal",
              "holo",
              "reverse_holo"
            ]
          },
          "cardName": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "imageUrl": {
            "type": "string",
            "format": "uri"
          },
          "authorDid": {
            "type": "string",
            "format": "did"
          },
          "condition": {
            "type": "string",
            "knownValues": [
              "mint",
              "near_mint",
              "excellent",
              "good",
              "damaged"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "showcased": {
            "type": "boolean"
          },
          "authorName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string",
            "description": "Card number within the set"
          },
          "binderIndex": {
            "type": "integer"
          },
          "marketValue": {
            "type": "number"
          },
          "authorAvatar": {
            "type": "string",
            "format": "uri"
          },
          "authorHandle": {
            "type": "string"
          },
          "purchasePrice": {
            "type": "number"
          },
          "acquisitionDate": {
            "type": "string",
            "format": "date"
          }
        }
      },
      "description": "A single card entry in a collector's collection."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "A Pokémon TCG card held in a collector's digital binder. Mirrored from the SwapPulse CollectionEntry entity so collection state is portable across PDSs."
}
```
