org.latha.gathering

nandi.latha.org

Documentation

A community gathering or meetup with structured attendee data and extensible thematic sections.

main record

A community gathering or meetup with structured attendee data and extensible thematic sections.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Client-declared timestamp when this record was created.

description string Optional

Brief description of the gathering.

maxLength: 20000 bytesmaxGraphemes: 2000 graphemes
endsAt string datetime Optional

Client-declared timestamp when the gathering ends.

format string Optional

Gathering format (e.g., unconference, workshop, hackathon, panel).

maxLength: 1000 bytesmaxGraphemes: 100 graphemes
name string Required

Name of the gathering.

maxLength: 2000 bytesmaxGraphemes: 200 graphemes
sections array of union Optional

Modular sections for grouping and analyzing the gathering. Each entry must specify a $type. Built-in: thematicCluster. Other lexicons may add more.

startsAt string datetime Optional

Client-declared timestamp when the gathering starts.

View raw schema
{
  "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."
}
actorRef object

A lightweight reference to an ATProto identity.

Properties

did string did Required

ATProto DID.

handle string Optional

Current ATProto handle.

View raw schema
{
  "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 object

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.

Properties

bio string Optional

Short bio or tagline.

maxLength: 5000 bytesmaxGraphemes: 500 graphemes
did string did Required

ATProto DID.

displayName string Optional

Display name.

maxLength: 1000 bytesmaxGraphemes: 100 graphemes
handle string Optional

ATProto handle.

notes string Optional

Researcher notes about this attendee.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
tags array of string Optional

Interest tags (a11y, privacy, transit, category-theory, etc.).

View raw schema
{
  "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."
}
host token

Host of the gathering.

Referenceorg.latha.gathering#host

Tokens have no data representation. Use the reference string as a value.

View raw schema
{
  "type": "token",
  "description": "Host of the gathering."
}
organizer token

Organizer of the gathering.

Referenceorg.latha.gathering#organizer

Tokens have no data representation. Use the reference string as a value.

View raw schema
{
  "type": "token",
  "description": "Organizer of the gathering."
}
participant token

Participant in the gathering.

Referenceorg.latha.gathering#participant

Tokens have no data representation. Use the reference string as a value.

View raw schema
{
  "type": "token",
  "description": "Participant in the gathering."
}
projectRef object

A reference to a project or tool.

Properties

name string Required

Project name.

maxLength: 1000 bytesmaxGraphemes: 100 graphemes
uri string uri Optional

Link to the project.

View raw schema
{
  "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."
}
role string

Role of an attendee in the gathering. No existing lexicon defines attendee roles; community.lexicon.calendar.rsvp only has going/interested/notgoing.

Known Values (other values may be valid)
org.latha.gathering#host(token) org.latha.gathering#organizer(token) org.latha.gathering#participant(token) org.latha.gathering#speaker(token) org.latha.gathering#volunteer(token)
View raw schema
{
  "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 token

Speaker at the gathering.

Referenceorg.latha.gathering#speaker

Tokens have no data representation. Use the reference string as a value.

View raw schema
{
  "type": "token",
  "description": "Speaker at the gathering."
}
thematicCluster object

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.

Properties

description string Optional

What brings this group together or what they provide.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
name string Required

Cluster name (e.g., Organizer Core, Protocol Infrastructure, Technologist-Philosophers).

maxLength: 1000 bytesmaxGraphemes: 100 graphemes
View raw schema
{
  "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."
}
volunteer token

Volunteer at the gathering.

Referenceorg.latha.gathering#volunteer

Tokens have no data representation. Use the reference string as a value.

View raw schema
{
  "type": "token",
  "description": "Volunteer at the gathering."
}

Lexicon Garden

@