org.latha.gathering

nandi.latha.org

{
  "id": "org.latha.gathering",
  "defs": {
    "uri": {
      "type": "object",
      "required": [
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "uri",
          "description": "The URI."
        },
        "name": {
          "type": "string",
          "maxLength": 500,
          "description": "Label for the URI.",
          "maxGraphemes": 50
        }
      },
      "description": "A named URI. Mirrors community.lexicon.calendar.event#uri."
    },
    "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": "org.latha.gathering#mode",
            "type": "ref",
            "description": "The attendance mode of the gathering."
          },
          "name": {
            "type": "string",
            "maxLength": 2000,
            "description": "Name of the gathering.",
            "maxGraphemes": 200
          },
          "uris": {
            "type": "array",
            "items": {
              "ref": "org.latha.gathering#uri",
              "type": "ref"
            },
            "description": "Platform links (OpenMeet, Meetup.com, etc.)."
          },
          "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": "org.latha.gathering#status",
            "type": "ref",
            "description": "The status of the gathering."
          },
          "sections": {
            "type": "array",
            "items": {
              "refs": [
                "org.latha.gathering#thematicCluster",
                "org.latha.gathering#networkAnalysis",
                "org.latha.gathering#convergenceAssessment",
                "org.latha.gathering#infrastructureMap"
              ],
              "type": "union",
              "closed": false
            },
            "description": "Open union of modular analysis sections. Each entry must specify a $type. Built-in section types: thematicCluster, networkAnalysis, convergenceAssessment, infrastructureMap. Other lexicons may add additional section types."
          },
          "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": {
              "ref": "org.latha.gathering#location",
              "type": "ref"
            },
            "description": "Where the gathering takes place."
          },
          "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 analysis sections."
    },
    "mode": {
      "type": "string",
      "description": "Attendance mode of the gathering.",
      "knownValues": [
        "org.latha.gathering#inperson",
        "org.latha.gathering#hybrid",
        "org.latha.gathering#virtual"
      ]
    },
    "none": {
      "type": "token",
      "description": "No alignment."
    },
    "role": {
      "type": "string",
      "description": "Role of an attendee in the gathering.",
      "knownValues": [
        "org.latha.gathering#host",
        "org.latha.gathering#organizer",
        "org.latha.gathering#participant",
        "org.latha.gathering#speaker",
        "org.latha.gathering#volunteer"
      ]
    },
    "hybrid": {
      "type": "token",
      "description": "Hybrid (in-person and virtual) gathering."
    },
    "status": {
      "type": "string",
      "description": "Status of the gathering.",
      "knownValues": [
        "org.latha.gathering#planned",
        "org.latha.gathering#scheduled",
        "org.latha.gathering#rescheduled",
        "org.latha.gathering#postponed",
        "org.latha.gathering#cancelled"
      ]
    },
    "strong": {
      "type": "token",
      "description": "Strong alignment."
    },
    "planned": {
      "type": "token",
      "description": "Gathering is planned."
    },
    "speaker": {
      "type": "token",
      "description": "Speaker at the gathering."
    },
    "virtual": {
      "type": "token",
      "description": "Virtual 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 with role, projects, and metadata. Fills the gap left by community.lexicon.calendar.rsvp (which has no role field)."
    },
    "emerging": {
      "type": "token",
      "description": "Emerging alignment."
    },
    "inperson": {
      "type": "token",
      "description": "In-person gathering."
    },
    "location": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 1000,
          "description": "Venue name.",
          "maxGraphemes": 100
        },
        "region": {
          "type": "string",
          "maxLength": 500,
          "description": "State or province.",
          "maxGraphemes": 50
        },
        "address": {
          "type": "string",
          "maxLength": 2000,
          "description": "Street address.",
          "maxGraphemes": 200
        },
        "country": {
          "type": "string",
          "maxLength": 2,
          "description": "ISO 3166-1 alpha-2 country code."
        },
        "locality": {
          "type": "string",
          "maxLength": 500,
          "description": "City or locality.",
          "maxGraphemes": 50
        },
        "postalCode": {
          "type": "string",
          "maxLength": 20,
          "description": "Postal code."
        }
      },
      "description": "A physical location. Mirrors community.lexicon.location.address fields."
    },
    "moderate": {
      "type": "token",
      "description": "Moderate alignment."
    },
    "alignment": {
      "type": "object",
      "required": [
        "principle",
        "feature"
      ],
      "properties": {
        "feature": {
          "type": "string",
          "maxLength": 2000,
          "description": "The observed feature (e.g., self-authenticating data, interoperable apps).",
          "maxGraphemes": 200
        },
        "strength": {
          "type": "string",
          "description": "Alignment strength.",
          "knownValues": [
            "org.latha.gathering#strong",
            "org.latha.gathering#moderate",
            "org.latha.gathering#emerging",
            "org.latha.gathering#none"
          ]
        },
        "principle": {
          "type": "string",
          "maxLength": 1000,
          "description": "The framework principle (e.g., user sovereignty, anti-monopoly).",
          "maxGraphemes": 100
        }
      },
      "description": "A mapping between a framework principle and an observed feature, with strength rating."
    },
    "cancelled": {
      "type": "token",
      "description": "Gathering has been cancelled."
    },
    "organizer": {
      "type": "token",
      "description": "Organizer of the gathering."
    },
    "postponed": {
      "type": "token",
      "description": "Gathering has been postponed."
    },
    "scheduled": {
      "type": "token",
      "description": "Gathering is scheduled."
    },
    "volunteer": {
      "type": "token",
      "description": "Volunteer at the gathering."
    },
    "connection": {
      "type": "object",
      "required": [
        "source",
        "target",
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "maxLength": 500,
          "description": "Relationship type (e.g., conviviality-alignment, civic-infrastructure, shared-practice)."
        },
        "source": {
          "ref": "org.latha.gathering#actorRef",
          "type": "ref",
          "description": "Source person."
        },
        "target": {
          "ref": "org.latha.gathering#actorRef",
          "type": "ref",
          "description": "Target person."
        },
        "description": {
          "type": "string",
          "maxLength": 5000,
          "description": "Why this connection matters.",
          "maxGraphemes": 500
        }
      },
      "description": "A typed relationship between two actors. DID-based, unlike network.cosmik.connection which is URL-based."
    },
    "infraLayer": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 1000,
          "description": "Layer name (e.g., Physical infrastructure, Protocol infrastructure).",
          "maxGraphemes": 100
        },
        "description": {
          "type": "string",
          "maxLength": 5000,
          "description": "What this layer provides.",
          "maxGraphemes": 500
        },
        "responsible": {
          "type": "array",
          "items": {
            "ref": "org.latha.gathering#actorRef",
            "type": "ref"
          },
          "description": "People or identities responsible for this layer."
        }
      },
      "description": "A named infrastructure layer with responsible parties."
    },
    "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."
    },
    "rescheduled": {
      "type": "token",
      "description": "Gathering has been rescheduled."
    },
    "networkAnalysis": {
      "type": "object",
      "properties": {
        "connections": {
          "type": "array",
          "items": {
            "ref": "org.latha.gathering#connection",
            "type": "ref"
          },
          "description": "Typed relationships between attendees."
        },
        "keyInsights": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 5000,
            "maxGraphemes": 500
          },
          "description": "What the network structure reveals."
        }
      },
      "description": "Structured analysis of connections between attendees and projects."
    },
    "thematicCluster": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 1000,
          "description": "Cluster name (e.g., Organizer Core, Technologist-Philosophers).",
          "maxGraphemes": 100
        },
        "members": {
          "type": "array",
          "items": {
            "ref": "org.latha.gathering#actorRef",
            "type": "ref"
          },
          "description": "DIDs and handles of cluster members."
        },
        "description": {
          "type": "string",
          "maxLength": 10000,
          "description": "What unites this cluster.",
          "maxGraphemes": 1000
        }
      },
      "description": "A group of attendees united by a shared theme or practice."
    },
    "infrastructureMap": {
      "type": "object",
      "properties": {
        "layers": {
          "type": "array",
          "items": {
            "ref": "org.latha.gathering#infraLayer",
            "type": "ref"
          },
          "description": "Named infrastructure layers with responsible parties."
        }
      },
      "description": "A map of social and technical infrastructure layers present at the gathering."
    },
    "convergenceAssessment": {
      "type": "object",
      "required": [
        "framework"
      ],
      "properties": {
        "gaps": {
          "type": "string",
          "maxLength": 20000,
          "description": "Where the gathering or network falls short of the framework.",
          "maxGraphemes": 2000
        },
        "framework": {
          "type": "string",
          "maxLength": 1000,
          "description": "The framework being assessed (e.g., degrowth, conviviality, commons, permacomputing).",
          "maxGraphemes": 100
        },
        "alignments": {
          "type": "array",
          "items": {
            "ref": "org.latha.gathering#alignment",
            "type": "ref"
          },
          "description": "Principle-to-feature alignment records."
        },
        "overallAlignment": {
          "type": "string",
          "maxLength": 5000,
          "description": "Summary assessment of overall alignment.",
          "maxGraphemes": 500
        }
      },
      "description": "Assessment of the gathering's alignment with a theoretical framework (degrowth, conviviality, commons, etc.)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A community gathering or meetup record with attendees, analysis sections, and framework convergence assessments. Self-contained record covering event metadata, rich attendee data, and extensible modular analysis."
}

Validate Record

Validate a record against org.latha.gathering

Validation Options
Treat any remaining unresolved references as valid

Metadata

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

Version History (3 versions)

Lexicon Garden

@