Sample Input Documents
Suppose you have a users collection where the active field is stored in different formats:
[
{ "_id": 1, "name": "Alice", "active": true },
{ "_id": 2, "name": "Bob", "active": 0 },
{ "_id": 3, "name": "Carol", "active": 1 },
{ "_id": 4, "name": "Dave", "active": "" },
{ "_id": 5, "name": "Eve", "active": "enabled" }
] 
