$l['level_id'], 'label' => $l['label'], 'labelEasy' => $l['label_easy'], ]; } v2_response_ok(['modules' => array_map(fn($r) => [ 'slug' => $r['slug'], 'displayName' => $r['display_name'], 'displayNameEasy' => $r['display_name_easy'], 'icon' => $r['icon'] ?? '📘', 'status' => $r['status'], 'estimatedDurationMin' => (int) $r['estimated_duration_min'], 'difficultyLevels' => $levelsBySlug[$r['slug']] ?? [['id' => 'L1', 'label' => 'Einsteiger', 'labelEasy' => 'Leicht']], ], $rows)]);