Senate simulation activity log entry.
Record Key
tid
Timestamp-based ID
Properties
activityType
string
Required
Type of senate activity
Known values:
committee_evaluation, simulation_started, simulation_completedcommitteeSims
array
of
ref
com.atproto.repo.strongRef
Required
References to the sim records participating in this committee
maxLength: 7 itemscreatedAt
string
datetime
Required
Timestamp when the activity was logged
evaluation
ref
com.atproto.repo.strongRef
Optional
Link to org.hypercerts.claim.evaluation record
proposalText
string
Optional
The proposal text being evaluated
maxLength: 10000 bytesresultSummary
string
Optional
Summary of the simulation result
maxLength: 50000 bytesstatus
string
Optional
Current status of the activity
Known values:
in_progress, completed, failedView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"activityType",
"committeeSims",
"createdAt"
],
"properties": {
"status": {
"type": "string",
"description": "Current status of the activity",
"knownValues": [
"in_progress",
"completed",
"failed"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the activity was logged"
},
"evaluation": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Link to org.hypercerts.claim.evaluation record"
},
"activityType": {
"type": "string",
"description": "Type of senate activity",
"knownValues": [
"committee_evaluation",
"simulation_started",
"simulation_completed"
]
},
"proposalText": {
"type": "string",
"maxLength": 10000,
"description": "The proposal text being evaluated"
},
"committeeSims": {
"type": "array",
"items": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"maxLength": 7,
"description": "References to the sim records participating in this committee"
},
"resultSummary": {
"type": "string",
"maxLength": 50000,
"description": "Summary of the simulation result"
}
}
},
"description": "Senate simulation activity log entry."
}