# org.swappulse.meetupRsvp

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

## Description

An attendee's RSVP for a meetup, mirrored to AT Protocol as a real org.swappulse.meetupRsvp record. References the meetup via strongRef so RSVPs are portable and verifiable across instances.

## Links

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

## Definitions

### `org.swappulse.meetupRsvp`

**Type**: `record`

A meetup RSVP.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `meetupId` | `string` | Yes |  |
| `attending` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `meetupRef` | `string` (at-uri) | Yes |  |
| `attendeeDid` | `string` (did) | No |  |
| `attendeeName` | `string` | No |  |
| `attendeeAvatar` | `string` (uri) | No |  |
| `attendeeHandle` | `string` | No |  |
| `lookingForCards` | `array` | No |  |
| `bringingTradeBinder` | `boolean` | No |  |

## Raw Schema

```json
{
  "id": "org.swappulse.meetupRsvp",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "meetupRef",
          "meetupId",
          "attending",
          "createdAt"
        ],
        "properties": {
          "meetupId": {
            "type": "string"
          },
          "attending": {
            "type": "string",
            "knownValues": [
              "yes",
              "maybe",
              "no"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "meetupRef": {
            "type": "string",
            "format": "at-uri"
          },
          "attendeeDid": {
            "type": "string",
            "format": "did"
          },
          "attendeeName": {
            "type": "string"
          },
          "attendeeAvatar": {
            "type": "string",
            "format": "uri"
          },
          "attendeeHandle": {
            "type": "string"
          },
          "lookingForCards": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "maxLength": 10
          },
          "bringingTradeBinder": {
            "type": "boolean"
          }
        }
      },
      "description": "A meetup RSVP."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "An attendee's RSVP for a meetup, mirrored to AT Protocol as a real org.swappulse.meetupRsvp record. References the meetup via strongRef so RSVPs are portable and verifiable across instances."
}
```
