MilestonePlannedevent type
Milestone created in Planned state.
Full spec
{
"name": "MilestonePlanned",
"description": "Milestone created in Planned state.",
"current_version": 1,
"actor_type_allowed": [
"human"
],
"object_type": "Milestone",
"payload_versions": {
"v1": {
"type": "object",
"additionalProperties": false,
"required": [
"milestone_id",
"title",
"owner_id",
"due_date",
"planned_by"
],
"properties": {
"milestone_id": {
"type": "string",
"format": "uuid"
},
"title": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"owner_id": {
"type": "string",
"format": "uuid"
},
"due_date": {
"type": "string",
"format": "date"
},
"exit_criteria": {
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"depends_on_milestone_ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"default": []
},
"depends_on_decision_ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"default": []
},
"planned_by": {
"type": "string",
"format": "uuid"
}
}
}
},
"projections_consuming": [
"milestones_view",
"timeline_view",
"audit_log"
],
"canonicalizer_module": "event-canonicalizers/milestone_planned.ts"
}