# org.swappulse.binder

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

## Description

A collector's digital binder (themed card display), mirrored to AT Protocol as a real org.swappulse.binder record so binders are portable and viewable across instances.

## Links

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

## Definitions

### `org.swappulse.binder`

**Type**: `record`

A digital binder.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `pages` | `array` | No |  |
| `theme` | `string` | No |  |
| `title` | `string` | Yes |  |
| `authorDid` | `string` (did) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `likeCount` | `integer` | No |  |
| `viewCount` | `integer` | No |  |
| `authorName` | `string` | No |  |
| `visibility` | `string` | Yes |  |
| `description` | `string` | No |  |
| `authorAvatar` | `string` (uri) | No |  |
| `authorHandle` | `string` | No |  |
| `coverImageUri` | `string` (uri) | No |  |

## Raw Schema

```json
{
  "id": "org.swappulse.binder",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "visibility",
          "createdAt"
        ],
        "properties": {
          "pages": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "slots": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "slotIndex": {
                        "type": "integer",
                        "maximum": 6,
                        "minimum": 1
                      },
                      "customCaption": {
                        "type": "string",
                        "maxLength": 100
                      },
                      "collectionEntryUri": {
                        "type": "string",
                        "format": "at-uri"
                      }
                    }
                  },
                  "maxLength": 6,
                  "minLength": 6
                },
                "pageNumber": {
                  "type": "integer",
                  "maximum": 10,
                  "minimum": 1
                }
              }
            },
            "maxLength": 10,
            "minLength": 1
          },
          "theme": {
            "type": "string",
            "knownValues": [
              "classic_purple",
              "holo_foil",
              "vintage_leather",
              "midnight",
              "rainbow",
              "custom"
            ]
          },
          "title": {
            "type": "string",
            "maxLength": 100
          },
          "authorDid": {
            "type": "string",
            "format": "did"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "likeCount": {
            "type": "integer"
          },
          "viewCount": {
            "type": "integer"
          },
          "authorName": {
            "type": "string"
          },
          "visibility": {
            "type": "string",
            "knownValues": [
              "public",
              "followers",
              "private"
            ]
          },
          "description": {
            "type": "string",
            "maxLength": 500
          },
          "authorAvatar": {
            "type": "string",
            "format": "uri"
          },
          "authorHandle": {
            "type": "string"
          },
          "coverImageUri": {
            "type": "string",
            "format": "uri"
          }
        }
      },
      "description": "A digital binder."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "A collector's digital binder (themed card display), mirrored to AT Protocol as a real org.swappulse.binder record so binders are portable and viewable across instances."
}
```
