๐ Match
Path match security rules to documents & collections
match /users/jeffd23 {
// Single document
}
match /users/{userId} {
// Single Collection
}
match /posts/{postId=**} {
// Recursive wildcard, includes all subcollections
}