org.latha.gathering

nandi.latha.org

{
  "id": "org.latha.gathering",
  "defs": {
    "host": {
      "type": "token",
      "description": "Host of the gathering."
    },
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "host": {
            "ref": "org.latha.gathering#actorRef",
            "type": "ref",
            "description": "The primary host or organizing identity."
          },
          "mode": {
            "ref": "community.lexicon.calendar.event#mode",
            "type": "ref",
            "description": "The attendance mode of the gathering. Reuses community.lexicon.calendar.event#mode."
          },
          "name": {
            "type": "string",
            "maxLength": 2000,
            "description": "Name of the gathering.",
            "maxGraphemes": 200
          },
          "uris": {
            "type": "array",
            "items": {
              "ref": "community.lexicon.calendar.event#uri",
              "type": "ref"
            },
            "description": "Platform links (OpenMeet, Meetup.com, etc.). Reuses community.lexicon.calendar.event#uri."
          },
          "endsAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when the gathering ends."
          },
          "format": {
            "type": "string",
            "maxLength": 1000,
            "description": "Gathering format (e.g., unconference, workshop, hackathon, panel).",
            "maxGraphemes": 100
          },
          "status": {
            "ref": "community.lexicon.calendar.event#status",
            "type": "ref",
            "description": "The status of the gathering. Reuses community.lexicon.calendar.event#status."
          },
          "sections": {
            "type": "array",
            "items": {
              "refs": [
                "org.latha.gathering#thematicCluster"
              ],
              "type": "union",
              "closed": false
            },
            "description": "Modular sections for grouping and analyzing the gathering. Each entry must specify a $type. Built-in: thematicCluster. Other lexicons may add more."
          },
          "startsAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when the gathering starts."
          },
          "attendees": {
            "type": "array",
            "items": {
              "ref": "org.latha.gathering#attendee",
              "type": "ref"
            },
            "description": "People who attended the gathering, with roles and metadata."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this record was created."
          },
          "locations": {
            "type": "array",
            "items": {
              "refs": [
                "community.lexicon.location.address",
                "community.lexicon.location.geo",
                "community.lexicon.location.fsq",
                "community.lexicon.location.hthree"
              ],
              "type": "union"
            },
            "description": "Where the gathering takes place. Reuses community.lexicon.location union (address, geo, fsq, hthree)."
          },
          "description": {
            "type": "string",
            "maxLength": 20000,
            "description": "Brief description of the gathering.",
            "maxGraphemes": 2000
          }
        }
      },
      "description": "A community gathering or meetup with structured attendee data and extensible thematic sections."
    },
    "role": {
      "type": "string",
      "description": "Role of an attendee in the gathering. No existing lexicon defines attendee roles; community.lexicon.calendar.rsvp only has going/interested/notgoing.",
      "knownValues": [
        "org.latha.gathering#host",
        "org.latha.gathering#organizer",
        "org.latha.gathering#participant",
        "org.latha.gathering#speaker",
        "org.latha.gathering#volunteer"
      ]
    },
    "speaker": {
      "type": "token",
      "description": "Speaker at the gathering."
    },
    "actorRef": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "ATProto DID."
        },
        "handle": {
          "type": "string",
          "description": "Current ATProto handle."
        }
      },
      "description": "A lightweight reference to an ATProto identity."
    },
    "attendee": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "bio": {
          "type": "string",
          "maxLength": 5000,
          "description": "Short bio or tagline.",
          "maxGraphemes": 500
        },
        "did": {
          "type": "string",
          "format": "did",
          "description": "ATProto DID."
        },
        "role": {
          "ref": "org.latha.gathering#role",
          "type": "ref",
          "description": "Role in the gathering: host, organizer, participant, speaker, volunteer."
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 640
          },
          "description": "Interest tags (a11y, privacy, transit, category-theory, etc.)."
        },
        "notes": {
          "type": "string",
          "maxLength": 10000,
          "description": "Researcher notes about this attendee.",
          "maxGraphemes": 1000
        },
        "handle": {
          "type": "string",
          "description": "ATProto handle."
        },
        "projects": {
          "type": "array",
          "items": {
            "ref": "org.latha.gathering#projectRef",
            "type": "ref"
          },
          "description": "Projects this person builds or maintains."
        },
        "displayName": {
          "type": "string",
          "maxLength": 1000,
          "description": "Display name.",
          "maxGraphemes": 100
        }
      },
      "description": "A rich attendee record extending community.lexicon.calendar.rsvp with role, bio, projects, and tags. While rsvp is a separate record linking a subject to a status, attendee embeds identity and metadata directly."
    },
    "organizer": {
      "type": "token",
      "description": "Organizer of the gathering."
    },
    "volunteer": {
      "type": "token",
      "description": "Volunteer at the gathering."
    },
    "projectRef": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "uri",
          "description": "Link to the project."
        },
        "name": {
          "type": "string",
          "maxLength": 1000,
          "description": "Project name.",
          "maxGraphemes": 100
        }
      },
      "description": "A reference to a project or tool."
    },
    "participant": {
      "type": "token",
      "description": "Participant in the gathering."
    },
    "thematicCluster": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 1000,
          "description": "Cluster name (e.g., Organizer Core, Protocol Infrastructure, Technologist-Philosophers).",
          "maxGraphemes": 100
        },
        "members": {
          "type": "array",
          "items": {
            "ref": "org.latha.gathering#actorRef",
            "type": "ref"
          },
          "description": "People in this cluster."
        },
        "description": {
          "type": "string",
          "maxLength": 10000,
          "description": "What brings this group together or what they provide.",
          "maxGraphemes": 1000
        }
      },
      "description": "A group of attendees united by a shared theme, practice, or infrastructure role. Each cluster names a social or technical layer present at the gathering."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A community gathering or meetup with structured attendee data and extensible thematic sections. Reuses community.lexicon.calendar.event for mode/status/uris and community.lexicon.location for locations. Adds rich attendee records (role, bio, projects, tags) and thematic clustering."
}

Validate Record

Validate a record against org.latha.gathering

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

Metadata

DID
did:plc:ngokl2gnmpbvuvrfckja3g7p
CID
bafyreig4qh7fetnfs7zakoiddwfrylmsjhyav26nqy3p5urs7a447zerx4
Indexed At
2026-04-25 23:14 UTC
AT-URI
at://did:plc:ngokl2gnmpbvuvrfckja3g7p/com.atproto.lexicon.schema/org.latha.gathering

Version History (3 versions)

Referenced Schemas (7)

Lexicon Garden

@