'Confused as to what this firebase rule means? Data not displaying from firestore database

The rule is

match /{document=**} {
  allow read, write: if request.time <= timestamp.date(2022, 1, 31);
}

Does it mean that read and write permissions are valid only till Jan 31 2022? The data is not displaying in UI anymore.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source