# org.simocracy.gathering

> Published by [simocracy.climateai.org](https://lexicon.garden/identity/did:plc:awtx57rxuisy4sf4kzzr3uhf)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:awtx57rxuisy4sf4kzzr3uhf/org.simocracy.gathering)
- [Documentation](https://lexicon.garden/lexicon/did:plc:awtx57rxuisy4sf4kzzr3uhf/org.simocracy.gathering/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:awtx57rxuisy4sf4kzzr3uhf/org.simocracy.gathering/examples)

## Definitions

### `org.simocracy.gathering`

**Type**: `record`

A governance or funding event that users can create and participate in.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` | No | External link (e.g. Luma registration page) |
| `name` | `string` | Yes | Display name of the event |
| `dates` | `string` | No | Human-readable date range (e.g. March 14-15, 2026) |
| `image` | `blob` | No | Cover image for the event (ATProto blob) |
| `status` | `string` | Yes | Current status of the gathering |
| `simSize` | `string` | No | Size of sim avatars in this gathering's world. large=48px, normal=32px (senate default), small=20px (ftc-sf default). |
| `appRoute` | `string` | No | Internal app route path (e.g. /senate, /ftc-sf) for built-in events |
| `location` | `string` | No | Physical or virtual location |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the record was created |
| `description` | `string` | No | Full event description with details, agenda, etc. |
| `gatheringType` | `string` | Yes | Type of gathering |
| `buildingImageUrl` | `string` | No | URL of the building/venue image for this gathering. Can be an absolute URL or a path relative to the app (e.g. /senate.png, /frontiertower.webp). |
| `shortDescription` | `string` | No | Brief summary for cards and previews |
| `descriptionFacets` | `array` | No | Rich text facets for description |
| `shortDescriptionFacets` | `array` | No | Rich text facets for shortDescription |

## Raw Schema

```json
{
  "id": "org.simocracy.gathering",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "gatheringType",
          "status",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "maxLength": 5000,
            "description": "External link (e.g. Luma registration page)"
          },
          "name": {
            "type": "string",
            "maxLength": 3000,
            "description": "Display name of the event",
            "maxGraphemes": 300
          },
          "dates": {
            "type": "string",
            "maxLength": 1000,
            "description": "Human-readable date range (e.g. March 14-15, 2026)",
            "maxGraphemes": 100
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Cover image for the event (ATProto blob)"
          },
          "status": {
            "type": "string",
            "description": "Current status of the gathering",
            "knownValues": [
              "application",
              "upcoming",
              "active",
              "completed"
            ]
          },
          "simSize": {
            "type": "string",
            "description": "Size of sim avatars in this gathering's world. large=48px, normal=32px (senate default), small=20px (ftc-sf default).",
            "knownValues": [
              "large",
              "normal",
              "small"
            ]
          },
          "appRoute": {
            "type": "string",
            "maxLength": 1000,
            "description": "Internal app route path (e.g. /senate, /ftc-sf) for built-in events"
          },
          "location": {
            "type": "string",
            "maxLength": 3000,
            "description": "Physical or virtual location",
            "maxGraphemes": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the record was created"
          },
          "description": {
            "type": "string",
            "maxLength": 30000,
            "description": "Full event description with details, agenda, etc.",
            "maxGraphemes": 3000
          },
          "gatheringType": {
            "type": "string",
            "description": "Type of gathering",
            "knownValues": [
              "funding",
              "governance",
              "hybrid"
            ]
          },
          "buildingImageUrl": {
            "type": "string",
            "maxLength": 5000,
            "description": "URL of the building/venue image for this gathering. Can be an absolute URL or a path relative to the app (e.g. /senate.png, /frontiertower.webp)."
          },
          "shortDescription": {
            "type": "string",
            "maxLength": 3000,
            "description": "Brief summary for cards and previews",
            "maxGraphemes": 300
          },
          "descriptionFacets": {
            "type": "array",
            "items": {
              "ref": "app.bsky.richtext.facet",
              "type": "ref"
            },
            "description": "Rich text facets for description"
          },
          "shortDescriptionFacets": {
            "type": "array",
            "items": {
              "ref": "app.bsky.richtext.facet",
              "type": "ref"
            },
            "description": "Rich text facets for shortDescription"
          }
        }
      },
      "description": "A governance or funding event that users can create and participate in."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
