I am having trouble wrapping my head around match /databases/{database}/documents, in the security rules from the official documentation:
The match /databases/{database}/documents declaration specifies that rules should match any Cloud Firestore database in the project. Currently each project has only a single database named (default)
Correct me if I am wrong, if, currently, there is only one database per project, the latter being named default so would it be possible to replace {database} by {default} or default as in /databases/default/documents?
If not, why?
Also, following the "any" wildcard could we replace /databases/{database}/documents by /databases/{database=**}/documents?
If not, why?