Database

[{"_id":"615dc97907f597330c510279","code":"SDFSDFSDF","location":"ABC1","week_number":39,"year":2020,"region":"NA"},{"_id":"615dc97907f597330c51027a","code":"SDFSGSGR","location":"ABC1","week_number":42,"year":2021,"region":"EU"},{"_id":"615dc97607f597330c50ff50","code":"GGSFHSFS","location":"DEF2","week_number":42,"year":2021,"region":"EU","audit_result":{"issues_found":true,"comment":"comment."}}]

Query

db.collection.aggregate([{$group:{_id:{year:"$year",week_number:"$week_number"},ids:{$push:"$_id"}}},{$sort:{"_id.year":-1,"_id.week_number":-1}},{$limit:1},{"$lookup":{"from":"collection","localField":"ids","foreignField":"_id","as":"docs"}},{"$unwind":"$docs"},{"$replaceRoot":{"newRoot":"$docs"}}])

Result