> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Configuration Examples

> Complete, annotated Nextedy RISKSHEET configurations from real-world projects.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

<Columns cols={2}>
  <Card title="TARA Configuration" icon="file" href="/risksheet/reference/examples/tara-example">
    ISO/SAE 21434 automotive cybersecurity threat analysis with 5-level merge hierarchy, feasibility scoring, and risk verdict matrix.
  </Card>

  <Card title="FMEA Configuration" icon="file" href="/risksheet/reference/examples/fmea-example">
    Failure Mode and Effects Analysis with RPN formulas, Action Priority logic, severity formatting, and cascading cross-document links.
  </Card>
</Columns>

## Example Comparison

|                          | TARA                                         | FMEA                                          |
| ------------------------ | -------------------------------------------- | --------------------------------------------- |
| **Methodology**          | ISO/SAE 21434 threat analysis                | AIAG-VDA / ARP 4761 failure analysis          |
| **Hierarchy levels**     | 5 (Stakeholder → Threat Path)                | 3 (System Element → Cause)                    |
| **Risk metric**          | Impact × Feasibility verdict (1-5)           | RPN = Severity × Occurrence × Detection       |
| **Alternative metric**   | --                                           | Action Priority (H/M/L logic)                 |
| **Formulas**             | 2 (feasibility weighted sum, verdict matrix) | 3 (initial RPN, revised RPN, Action Priority) |
| **Workflow views**       | 7 phased views                               | 10 step-by-step views                         |
| **Cross-document links** | Task links to risk controls                  | Upstream/downstream FMEA cascade              |

## Related Resources

* [Risksheet.json Format Reference](/risksheet/reference/configuration/risksheet-json-format) -- complete property reference for all configuration keys
* [Levels Configuration](/risksheet/reference/levels-configuration) -- hierarchy merge behavior and level properties
* [Formula Syntax](/risksheet/reference/formulas/formula-syntax) -- JavaScript formula writing guide
* [Cell Decorators](/risksheet/reference/styling/cell-decorators) -- dynamic cell styling reference
* [Saved Views](/risksheet/reference/saved-views) -- view configuration and column visibility

<Tip title="Choosing an Example">
  Start with **TARA** if your analysis uses a matrix-based risk verdict (impact × likelihood). Start with **FMEA** if your analysis uses numeric risk priority scoring (severity × occurrence × detection) or AIAG-VDA Action Priority.
</Tip>

<LastReviewed date="2026-06-24" />
