File size: 425 Bytes
e70f810 a832eac e70f810 a832eac e70f810 a832eac e70f810 a832eac e70f810 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
export function validateDashboard(d) {
if (!d) throw new Error("dashboard_view missing");
if (!d.marketTitle) {
throw new Error("dashboard_view.marketTitle missing");
}
if (!d.marketSummary) {
throw new Error("dashboard_view.marketSummary missing");
}
// Basic validation only
if (!Array.isArray(d.marketSegments)) {
throw new Error("dashboard_view.marketSegments must be array");
}
}
|