# org.swappulse.packParty

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

## Description

A synchronized pack-opening event where collectors open packs of the same set at the same time and share reactions in real time. Mirrored to AT Protocol so parties are discoverable across instances.

## Links

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

## Definitions

### `org.swappulse.packParty`

**Type**: `record`

A pack-opening party event.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `setId` | `string` | Yes |  |
| `title` | `string` | Yes |  |
| `status` | `string` | No |  |
| `hostDid` | `string` (did) | No |  |
| `setName` | `string` | No |  |
| `hostName` | `string` | No |  |
| `setImage` | `string` (uri) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `hostAvatar` | `string` (uri) | No |  |
| `hostHandle` | `string` | No |  |
| `description` | `string` | No |  |
| `scheduledAt` | `string` (datetime) | Yes |  |
| `maxParticipants` | `integer` | No |  |
| `participantCount` | `integer` | No |  |

## Raw Schema

```json
{
  "id": "org.swappulse.packParty",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "setId",
          "scheduledAt",
          "createdAt"
        ],
        "properties": {
          "setId": {
            "type": "string"
          },
          "title": {
            "type": "string",
            "maxLength": 100
          },
          "status": {
            "type": "string",
            "knownValues": [
              "scheduled",
              "live",
              "completed"
            ]
          },
          "hostDid": {
            "type": "string",
            "format": "did"
          },
          "setName": {
            "type": "string"
          },
          "hostName": {
            "type": "string"
          },
          "setImage": {
            "type": "string",
            "format": "uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "hostAvatar": {
            "type": "string",
            "format": "uri"
          },
          "hostHandle": {
            "type": "string"
          },
          "description": {
            "type": "string",
            "maxLength": 500
          },
          "scheduledAt": {
            "type": "string",
            "format": "datetime"
          },
          "maxParticipants": {
            "type": "integer"
          },
          "participantCount": {
            "type": "integer"
          }
        }
      },
      "description": "A pack-opening party event."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "A synchronized pack-opening event where collectors open packs of the same set at the same time and share reactions in real time. Mirrored to AT Protocol so parties are discoverable across instances."
}
```
