GCC Build OSv0
/api

AssumptionCapturedevent type

An assumption was recorded in the RAID register with validation path and fallback.

Full spec

{
  "name": "AssumptionCaptured",
  "description": "An assumption was recorded in the RAID register with validation path and fallback.",
  "current_version": 1,
  "actor_type_allowed": [
    "human"
  ],
  "object_type": "Assumption",
  "payload_versions": {
    "v1": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "assumption_id",
        "statement",
        "validation_path",
        "owner_id",
        "review_date",
        "captured_by"
      ],
      "properties": {
        "assumption_id": {
          "type": "string",
          "format": "uuid"
        },
        "statement": {
          "type": "string",
          "minLength": 1
        },
        "validation_path": {
          "type": "string",
          "minLength": 1
        },
        "fallback_if_invalidated": {
          "type": "string"
        },
        "owner_id": {
          "type": "string",
          "format": "uuid"
        },
        "review_date": {
          "type": "string",
          "format": "date"
        },
        "linked_object_refs": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "object_type",
              "object_id"
            ],
            "properties": {
              "object_type": {
                "type": "string"
              },
              "object_id": {
                "type": "string",
                "format": "uuid"
              }
            }
          },
          "default": []
        },
        "captured_by": {
          "type": "string",
          "format": "uuid"
        }
      }
    }
  },
  "projections_consuming": [
    "raid_view",
    "assumptions_view",
    "audit_log"
  ],
  "canonicalizer_module": "event-canonicalizers/assumption_captured.ts"
}