Unwind ne descend que d'un niveau, vous devez donc appeler autant de fois que de niveaux si vous le faites comme
[
{ "$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}}
]
Cela fonctionnera comme prévu.