rsvp.atmo.event.listRecords

atmo.rsvp

{
  "id": "rsvp.atmo.event.listRecords",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "records"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "records": {
              "type": "array",
              "items": {
                "ref": "#record",
                "type": "ref"
              }
            },
            "profiles": {
              "type": "array",
              "items": {
                "ref": "#profileEntry",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "mode": {
            "type": "string",
            "description": "Filter by mode"
          },
          "name": {
            "type": "string",
            "description": "Filter by name"
          },
          "sort": {
            "type": "string",
            "description": "Field to sort by (default: time_us)",
            "knownValues": [
              "mode",
              "name",
              "endsAt",
              "status",
              "startsAt",
              "createdAt",
              "description",
              "rsvpsCount",
              "rsvpsInterestedCount",
              "rsvpsGoingCount",
              "rsvpsNotgoingCount"
            ]
          },
          "actor": {
            "type": "string",
            "format": "at-identifier",
            "description": "Filter by DID or handle (triggers on-demand backfill)"
          },
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 200,
            "minimum": 1
          },
          "order": {
            "type": "string",
            "description": "Sort direction (default: desc for dates/numbers/counts, asc for strings)",
            "knownValues": [
              "asc",
              "desc"
            ]
          },
          "byUser": {
            "type": "string",
            "format": "did",
            "description": "Only used with spaceUri — filter to records authored by this DID."
          },
          "cursor": {
            "type": "string"
          },
          "search": {
            "type": "string",
            "description": "Full-text search across: mode, name, status, description"
          },
          "status": {
            "type": "string",
            "description": "Filter by status"
          },
          "profiles": {
            "type": "boolean",
            "description": "Include profile + identity info keyed by DID"
          },
          "spaceUri": {
            "type": "string",
            "format": "at-uri",
            "description": "If set, query records inside this permissioned space (requires service-auth JWT)."
          },
          "endsAtMax": {
            "type": "string",
            "description": "Maximum value for endsAt"
          },
          "endsAtMin": {
            "type": "string",
            "description": "Minimum value for endsAt"
          },
          "description": {
            "type": "string",
            "description": "Filter by description"
          },
          "startsAtMax": {
            "type": "string",
            "description": "Maximum value for startsAt"
          },
          "startsAtMin": {
            "type": "string",
            "description": "Minimum value for startsAt"
          },
          "createdAtMax": {
            "type": "string",
            "description": "Maximum value for createdAt"
          },
          "createdAtMin": {
            "type": "string",
            "description": "Minimum value for createdAt"
          },
          "hydrateRsvps": {
            "type": "integer",
            "maximum": 50,
            "minimum": 1,
            "description": "Number of rsvps records to embed per record"
          },
          "rsvpsCountMin": {
            "type": "integer",
            "description": "Minimum total rsvps count"
          },
          "rsvpsGoingCountMin": {
            "type": "integer",
            "description": "Minimum rsvps count where status = going"
          },
          "rsvpsNotgoingCountMin": {
            "type": "integer",
            "description": "Minimum rsvps count where status = notgoing"
          },
          "rsvpsInterestedCountMin": {
            "type": "integer",
            "description": "Minimum rsvps count where status = interested"
          }
        }
      },
      "description": "Query community.lexicon.calendar.event records with filters"
    },
    "record": {
      "type": "object",
      "required": [
        "uri",
        "did",
        "collection",
        "rkey",
        "time_us"
      ],
      "properties": {
        "cid": {
          "type": "string"
        },
        "did": {
          "type": "string",
          "format": "did"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "rkey": {
          "type": "string"
        },
        "rsvps": {
          "ref": "#hydrateRsvps",
          "type": "ref"
        },
        "space": {
          "type": "string",
          "format": "at-uri",
          "description": "Present when the record was read from a permissioned space; its value is the space URI."
        },
        "record": {
          "ref": "community.lexicon.calendar.event#main",
          "type": "ref"
        },
        "time_us": {
          "type": "integer"
        },
        "collection": {
          "type": "string",
          "format": "nsid"
        },
        "rsvpsCount": {
          "type": "integer",
          "description": "Total rsvps count"
        },
        "rsvpsGoingCount": {
          "type": "integer",
          "description": "rsvps count where status = going"
        },
        "rsvpsNotgoingCount": {
          "type": "integer",
          "description": "rsvps count where status = notgoing"
        },
        "rsvpsInterestedCount": {
          "type": "integer",
          "description": "rsvps count where status = interested"
        }
      }
    },
    "hydrateRsvps": {
      "type": "object",
      "properties": {
        "going": {
          "type": "array",
          "items": {
            "ref": "#hydrateRsvpsRecord",
            "type": "ref"
          }
        },
        "other": {
          "type": "array",
          "items": {
            "ref": "#hydrateRsvpsRecord",
            "type": "ref"
          }
        },
        "notgoing": {
          "type": "array",
          "items": {
            "ref": "#hydrateRsvpsRecord",
            "type": "ref"
          }
        },
        "interested": {
          "type": "array",
          "items": {
            "ref": "#hydrateRsvpsRecord",
            "type": "ref"
          }
        }
      }
    },
    "profileEntry": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "cid": {
          "type": "string"
        },
        "did": {
          "type": "string",
          "format": "did"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "rkey": {
          "type": "string"
        },
        "handle": {
          "type": "string"
        },
        "record": {
          "ref": "#appBskyActorProfile",
          "type": "ref"
        },
        "collection": {
          "type": "string",
          "format": "nsid"
        }
      }
    },
    "hydrateRsvpsRecord": {
      "type": "object",
      "required": [
        "uri",
        "did",
        "collection",
        "rkey",
        "time_us"
      ],
      "properties": {
        "cid": {
          "type": "string"
        },
        "did": {
          "type": "string",
          "format": "did"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "rkey": {
          "type": "string"
        },
        "space": {
          "type": "string",
          "format": "at-uri",
          "description": "Present when the record was read from a permissioned space."
        },
        "record": {
          "ref": "community.lexicon.calendar.rsvp#main",
          "type": "ref"
        },
        "time_us": {
          "type": "integer"
        },
        "collection": {
          "type": "string",
          "format": "nsid"
        }
      }
    },
    "appBskyActorProfile": {
      "type": "object",
      "properties": {
        "avatar": {
          "type": "blob",
          "accept": [
            "image/png",
            "image/jpeg"
          ],
          "maxSize": 1000000,
          "description": "Small image to be displayed next to posts from account. AKA, 'profile picture'"
        },
        "banner": {
          "type": "blob",
          "accept": [
            "image/png",
            "image/jpeg"
          ],
          "maxSize": 1000000,
          "description": "Larger horizontal image to display behind profile view."
        },
        "labels": {
          "refs": [
            "com.atproto.label.defs#selfLabels"
          ],
          "type": "union",
          "description": "Self-label values, specific to the Bluesky application, on the overall account."
        },
        "website": {
          "type": "string",
          "format": "uri"
        },
        "pronouns": {
          "type": "string",
          "maxLength": 200,
          "description": "Free-form pronouns text.",
          "maxGraphemes": 20
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "pinnedPost": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        },
        "description": {
          "type": "string",
          "maxLength": 2560,
          "description": "Free-form profile description text.",
          "maxGraphemes": 256
        },
        "displayName": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        },
        "joinedViaStarterPack": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}

Validate Record

Validate a record against rsvp.atmo.event.listRecords

Validation Options
Automatically resolve and include external schemas for full validation
Treat any remaining unresolved references as valid

Metadata

DID
did:plc:b63bmauox6z5rbibwrhxrdnw
CID
bafyreiblj5qbkajlb6k4cpyn7zkwf3v3kdxwyn3bmm3t4ldhkdmf7cis6i
Indexed At
2026-04-14 17:40 UTC
AT-URI
at://did:plc:b63bmauox6z5rbibwrhxrdnw/com.atproto.lexicon.schema/rsvp.atmo.event.listRecords

Referenced Schemas (3)

Lexicon Garden

@