org.simocracy.history
Schema Diff
+5 -5
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "org.simocracy.history",
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
"type",
11
11
"actorDid",
12
12
"simNames",
13
13
"createdAt"
14
14
],
15
15
"properties": {
16
16
"type": {
17
17
"type": "string",
18
-
"description": "Event type: chat, hearing, or comment"
18
+
"description": "Event type: \"chat\" or \"sprocess\""
19
19
},
20
20
"round": {
21
21
"type": "integer",
22
-
"description": "Hearing round: 1=evaluation, 2=response, 3=summary (for comment events)"
22
+
"description": "Ordering index within a multi-step event (e.g. sim index within an S-Process run)"
23
23
},
24
24
"content": {
25
25
"type": "string",
26
26
"description": "The actual content — sim response for chat, sim opinion for comment",
27
27
"maxGraphemes": 5000
28
28
},
29
29
"simUris": {
30
30
"type": "array",
31
31
"items": {
32
32
"type": "string"
33
33
},
34
34
"maxLength": 10,
35
35
"description": "AT-URIs of sims involved"
36
36
},
37
37
"actorDid": {
38
38
"type": "string",
39
39
"description": "DID of the user who triggered the event"
40
40
},
41
41
"simNames": {
42
42
"type": "array",
43
43
"items": {
44
44
"type": "string"
45
45
},
46
46
"maxLength": 10,
47
47
"description": "Names of sims involved"
48
48
},
49
49
"createdAt": {
50
50
"type": "string",
51
51
"format": "datetime"
52
52
},
53
53
"hearingId": {
54
54
"type": "string",
55
55
"maxLength": 32,
56
-
"description": "Unique ID for grouping events from the same hearing session"
56
+
"description": "Opaque run ID grouping events from the same session (legacy name; also used by S-Process runs)"
57
57
},
58
58
"userMessage": {
59
59
"type": "string",
60
60
"description": "User's message that prompted the response (for chat events)",
61
61
"maxGraphemes": 2000
62
62
},
63
63
"proposalTitle": {
64
64
"type": "string",
65
-
"description": "Title of the proposal (for hearing/comment events)",
65
+
"description": "Title of the proposal or floor the event relates to",
66
66
"maxGraphemes": 500
67
67
}
68
68
}
69
69
},
70
-
"description": "Tracks user interactions — chat messages, senate hearings launched, and individual sim comments during hearings."
70
+
"description": "Tracks user interactions — chat messages with sims and S-Process deliberation events."
71
71
}
72
72
},
73
73
"$type": "com.atproto.lexicon.schema",
74
74
"lexicon": 1
75
75
}