Skip to content

Decision

v1 · 0 objects

Fields

TypeScript

/** A decision that was made, with its reasoning */
interface Decision {
	title: string;
	/** What was decided */
	outcome: string;
	rationale?: string;
	status: "proposed" | "final" | "revisited";
	decidedOn?: Date;
}

Version history

  1. v12026-07-05 · by user · 0 objects

    • Created with 5 field(s)