org.simocracy.gathering
Schema Diff
+5 -0
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 2 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "org.simocracy.gathering:body.treasuryUsd", sort: "minimum", value: "0" }
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "org.simocracy.gathering:body.treasuryUsd" }
- AddedEdge AddedEdge { src: "org.simocracy.gathering:body", tgt: "org.simocracy.gathering:body.treasuryUsd", kind: "prop", name: Some("treasuryUsd") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "org.simocracy.gathering:body.treasuryUsd" }
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "org.simocracy.gathering:body.treasuryUsd", sort: "minimum", value: "0" }
Additional Notes
- Non-breaking: AddedEdge { src: "org.simocracy.gathering:body", tgt: "org.simocracy.gathering:body.treasuryUsd", kind: "prop", name: Some("treasuryUsd") }
1
1
{
2
2
"id": "org.simocracy.gathering",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"name",
11
11
"gatheringType",
12
12
"status",
13
13
"createdAt"
14
14
],
15
15
"properties": {
16
16
"url": {
17
17
"type": "string",
18
18
"maxLength": 5000,
19
19
"description": "External link (e.g. Luma registration page)"
20
20
},
21
21
"name": {
22
22
"type": "string",
23
23
"maxLength": 3000,
24
24
"description": "Display name of the event",
25
25
"maxGraphemes": 300
26
26
},
27
27
"dates": {
28
28
"type": "string",
29
29
"maxLength": 1000,
30
30
"description": "Human-readable date range (e.g. March 14-15, 2026)",
31
31
"maxGraphemes": 100
32
32
},
33
33
"image": {
34
34
"type": "blob",
35
35
"accept": [
36
36
"image/png",
37
37
"image/jpeg",
38
38
"image/webp"
39
39
],
40
40
"maxSize": 1000000,
41
41
"description": "Cover image for the event (ATProto blob)"
42
42
},
43
43
"status": {
44
44
"type": "string",
45
45
"description": "Current status of the gathering",
46
46
"knownValues": [
47
47
"application",
48
48
"upcoming",
49
49
"active",
50
50
"completed"
51
51
]
52
52
},
53
53
"simSize": {
54
54
"type": "string",
55
55
"description": "Size of sim avatars in this gathering's world. large=48px, normal=32px (senate default), small=20px (ftc-sf default).",
56
56
"knownValues": [
57
57
"large",
58
58
"normal",
59
59
"small"
60
60
]
61
61
},
62
62
"appRoute": {
63
63
"type": "string",
64
64
"maxLength": 1000,
65
65
"description": "Internal app route path (e.g. /senate, /ftc-sf) for built-in events"
66
66
},
67
67
"location": {
68
68
"type": "string",
69
69
"maxLength": 3000,
70
70
"description": "Physical or virtual location",
71
71
"maxGraphemes": 300
72
72
},
73
73
"createdAt": {
74
74
"type": "string",
75
75
"format": "datetime",
76
76
"description": "Timestamp when the record was created"
77
77
},
78
78
"councilSims": {
79
79
"type": "array",
80
80
"items": {
81
81
"ref": "com.atproto.repo.strongRef",
82
82
"type": "ref"
83
83
},
84
84
"maxLength": 50,
85
85
"description": "Array of StrongRefs to sim records appointed to this gathering's council by the event creator."
86
86
},
87
87
"description": {
88
88
"type": "string",
89
89
"maxLength": 30000,
90
90
"description": "Full event description with details, agenda, etc.",
91
91
"maxGraphemes": 3000
92
92
},
93
+
"treasuryUsd": {
94
+
"type": "integer",
95
+
"minimum": 0,
96
+
"description": "Optional agentic treasury amount in USD that the council governs."
97
+
},
93
98
"collectionUri": {
94
99
"type": "string",
95
100
"maxLength": 5000,
96
101
"description": "AT-URI of an org.hypercerts.collection record for this gathering's proposals."
97
102
},
98
103
"gatheringType": {
99
104
"type": "string",
100
105
"description": "Type of gathering",
101
106
"knownValues": [
102
107
"funding",
103
108
"governance",
104
109
"hybrid"
105
110
]
106
111
},
107
112
"buildingImageUrl": {
108
113
"type": "string",
109
114
"maxLength": 5000,
110
115
"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)."
111
116
},
112
117
"shortDescription": {
113
118
"type": "string",
114
119
"maxLength": 3000,
115
120
"description": "Brief summary for cards and previews",
116
121
"maxGraphemes": 300
117
122
},
118
123
"descriptionFacets": {
119
124
"type": "array",
120
125
"items": {
121
126
"ref": "app.bsky.richtext.facet",
122
127
"type": "ref"
123
128
},
124
129
"description": "Rich text facets for description"
125
130
},
126
131
"shortDescriptionFacets": {
127
132
"type": "array",
128
133
"items": {
129
134
"ref": "app.bsky.richtext.facet",
130
135
"type": "ref"
131
136
},
132
137
"description": "Rich text facets for shortDescription"
133
138
}
134
139
}
135
140
},
136
141
"description": "A governance or funding event that users can create and participate in."
137
142
}
138
143
},
139
144
"$type": "com.atproto.lexicon.schema",
140
145
"lexicon": 1
141
146
}