Unwind gaat maar één niveau naar beneden, dus je moet zoveel keer zoveel niveaus bellen als je hebt als je het doet zoals
[
{ "$project" : { "text" : "$periods.tables.rows.text" , "_id" : "$_id"}},
{ "$unwind" : "$text"},
{ "$unwind" : "$text"},
{ "$unwind" : "$text"},
{ "$group" : { "_id" : "$_id" , "texts" : { "$addToSet" : "$text"}}},
{ "$project" : { "_id" : 0 , "texts" : 1}}
]
Het zal werken zoals je verwacht.