# com.sidefield.rsvp

> Published by [sidefield-app.bsky.social](https://lexicon.garden/identity/did:plc:gmvwumglpc4sn5s77uzb2bth)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:gmvwumglpc4sn5s77uzb2bth/com.sidefield.rsvp)
- [Documentation](https://lexicon.garden/lexicon/did:plc:gmvwumglpc4sn5s77uzb2bth/com.sidefield.rsvp/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:gmvwumglpc4sn5s77uzb2bth/com.sidefield.rsvp/examples)

## Definitions

### `com.sidefield.rsvp#no`

**Type**: `token`

Not attending the event

Not attending the event

### `com.sidefield.rsvp#yes`

**Type**: `token`

Attending the event

Attending the event

### `com.sidefield.rsvp`

**Type**: `record`

Record declaring an RSVP for a Sidefield community event.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `status` | `string` | Yes |  |
| `comment` | `string` | No | Optional comment providing context for the RSVP status |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes |  |

### `com.sidefield.rsvp#maybe`

**Type**: `token`

Maybe attending the event

Maybe attending the event

## Raw Schema

```json
{
  "id": "com.sidefield.rsvp",
  "defs": {
    "no": {
      "type": "token",
      "description": "Not attending the event"
    },
    "yes": {
      "type": "token",
      "description": "Attending the event"
    },
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "status"
        ],
        "properties": {
          "status": {
            "type": "string",
            "knownValues": [
              "com.sidefield.rsvp#yes",
              "com.sidefield.rsvp#no",
              "com.sidefield.rsvp#maybe"
            ]
          },
          "comment": {
            "type": "string",
            "maxLength": 500,
            "description": "Optional comment providing context for the RSVP status"
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          }
        }
      },
      "description": "Record declaring an RSVP for a Sidefield community event."
    },
    "maybe": {
      "type": "token",
      "description": "Maybe attending the event"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
