org.simocracy.senate.activity

gainforest.earth

Documentation

Senate simulation activity log entry.

main record

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_completed
committeeSims array of ref com.atproto.repo.strongRef Required

References to the sim records participating in this committee

maxLength: 7 items
createdAt string datetime Required

Timestamp when the activity was logged

proposalText string Optional

The proposal text being evaluated

maxLength: 10000 bytes
resultSummary string Optional

Summary of the simulation result

maxLength: 50000 bytes
status string Optional

Current status of the activity

Known values: in_progress, completed, failed
View 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."
}

Lexicon Garden

@