// Importance matrix
{
id: "importance",
type: "matrix",
headline: { default: "How important are these aspects to you?" },
required: true,
rows: [
{ id: "speed", label: { default: "Speed" } },
{ id: "reliability", label: { default: "Reliability" } },
{ id: "features", label: { default: "Feature Set" } },
{ id: "price", label: { default: "Pricing" } }
],
columns: [
{ id: "not_important", label: { default: "Not Important" } },
{ id: "somewhat", label: { default: "Somewhat Important" } },
{ id: "important", label: { default: "Important" } },
{ id: "very", label: { default: "Very Important" } }
]
},
// Performance matrix (same rows, different columns)
{
id: "performance",
type: "matrix",
headline: { default: "How well do we perform on these aspects?" },
required: true,
rows: [
{ id: "speed", label: { default: "Speed" } },
{ id: "reliability", label: { default: "Reliability" } },
{ id: "features", label: { default: "Feature Set" } },
{ id: "price", label: { default: "Pricing" } }
],
columns: [
{ id: "poor", label: { default: "Poor" } },
{ id: "fair", label: { default: "Fair" } },
{ id: "good", label: { default: "Good" } },
{ id: "excellent", label: { default: "Excellent" } }
]
}