{
"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
}