{
  format_asset: (a) => (a.title != null ? a.title : '?') + ' (' + (a.type != null ? a.type : '?') + ')' + (a.downloadUrl != null ? ' - Download: ' + a.downloadUrl : ''),

  format_completion: (r) => 'User ' + r.user + ' - Path ' + r.learning_path_id + ': ' + r.learning_path_comp_pct + '% complete' + (r.completion_date != null ? ' (completed ' + r.completion_date + ')' : ''),

  format_section: (r) => 'User ' + r.user_id + ' - Path ' + r.learning_path_id + ' Section ' + r.session_id + ': ' + r.completion + '% complete',

  format_participant: (r) => 'User ' + r.user_id + ' enrolled in Path ' + r.learning_path_id + ' (due: ' + (r.due_date != null ? r.due_date : 'none') + ')'
}
