diff --git a/crates/db_schema/src/aggregates/structs.rs b/crates/db_schema/src/aggregates/structs.rs
index 641ca3b3df6a3ee7f2045c3c1b5e686dd147cb93..e01e6d984323f049cbe434b47787a7077d14f768 100644
--- a/crates/db_schema/src/aggregates/structs.rs
+++ b/crates/db_schema/src/aggregates/structs.rs
@@ -71,8 +71,10 @@ pub struct PersonAggregates {
   pub id: i32,
   pub person_id: PersonId,
   pub post_count: i64,
+  #[serde(skip)]
   pub post_score: i64,
   pub comment_count: i64,
+  #[serde(skip)]
   pub comment_score: i64,
 }