GCC Build OSv0
/api

DecisionInReviewevent type

Decision transitioned Open -> In Review (rationale and evidence sufficient to start the approval chain).

Full spec

{
  "name": "DecisionInReview",
  "description": "Decision transitioned Open -> In Review (rationale and evidence sufficient to start the approval chain).",
  "current_version": 1,
  "actor_type_allowed": [
    "human"
  ],
  "object_type": "Decision",
  "payload_versions": {
    "v1": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "decision_id",
        "moved_by"
      ],
      "properties": {
        "decision_id": {
          "type": "string",
          "format": "uuid"
        },
        "moved_by": {
          "type": "string",
          "format": "uuid"
        },
        "rationale_snapshot": {
          "type": "string",
          "description": "Optional snapshot of the rationale text at the moment of moving to In Review (audit-grade)."
        }
      }
    }
  },
  "projections_consuming": [
    "decisions_view",
    "audit_log"
  ],
  "canonicalizer_module": "event-canonicalizers/decision_in_review.ts"
}