GCC Build OSv0
/api

QuestionAnsweredevent type

Question transitioned In Progress -> Answered. Refers to the AnswerCreated event id that holds the answer content; allows multiple answer revisions while keeping lifecycle clean.

Full spec

{
  "name": "QuestionAnswered",
  "description": "Question transitioned In Progress -> Answered. Refers to the AnswerCreated event id that holds the answer content; allows multiple answer revisions while keeping lifecycle clean.",
  "current_version": 1,
  "actor_type_allowed": [
    "human"
  ],
  "object_type": "Question",
  "payload_versions": {
    "v1": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "question_id",
        "answer_id",
        "answered_by"
      ],
      "properties": {
        "question_id": {
          "type": "string",
          "format": "uuid"
        },
        "answer_id": {
          "type": "string",
          "format": "uuid"
        },
        "answered_by": {
          "type": "string",
          "format": "uuid"
        }
      }
    }
  },
  "projections_consuming": [
    "questions_view",
    "answers_view",
    "audit_log"
  ],
  "canonicalizer_module": "event-canonicalizers/question_answered.ts"
}