-
-
Save stefan-d-p/8f9c9c0f060d82b5a3f8065937d62b86 to your computer and use it in GitHub Desktop.
Contact Sample Data for MongoDB Collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"firstName": "John", | |
"lastName": "Doe", | |
"middleName": "Michael", | |
"addresses": [ | |
{ | |
"type": "Home", | |
"street": "123 Main St", | |
"city": "Anytown", | |
"state": "CA", | |
"zipCode": "12345" | |
}, | |
{ | |
"type": "Business", | |
"street": "456 Office Blvd", | |
"city": "Workville", | |
"state": "NY", | |
"zipCode": "67890" | |
} | |
], | |
"phoneNumber": "555-123-4567", | |
"emailAddress": "john.doe@email.com" | |
}, | |
{ | |
"firstName": "Jane", | |
"lastName": "Smith", | |
"middleName": "Elizabeth", | |
"addresses": [ | |
{ | |
"type": "Home", | |
"street": "789 Elm St", | |
"city": "Hometown", | |
"state": "TX", | |
"zipCode": "54321" | |
} | |
], | |
"phoneNumber": "555-987-6543", | |
"emailAddress": "jane.smith@email.com" | |
}, | |
{ | |
"firstName": "Robert", | |
"lastName": "Johnson", | |
"middleName": "William", | |
"addresses": [ | |
{ | |
"type": "Home", | |
"street": "321 Oak Ave", | |
"city": "Springfield", | |
"state": "IL", | |
"zipCode": "11111" | |
}, | |
{ | |
"type": "Other", | |
"street": "654 Pine Rd", | |
"city": "Lakeside", | |
"state": "MI", | |
"zipCode": "22222" | |
} | |
], | |
"phoneNumber": "555-246-8135", | |
"emailAddress": "robert.johnson@email.com" | |
}, | |
{ | |
"firstName": "Emily", | |
"lastName": "Brown", | |
"middleName": "Grace", | |
"addresses": [ | |
{ | |
"type": "Business", | |
"street": "987 Corporate Pkwy", | |
"city": "Metropolis", | |
"state": "CA", | |
"zipCode": "99999" | |
} | |
], | |
"phoneNumber": "555-369-2580", | |
"emailAddress": "emily.brown@email.com" | |
}, | |
{ | |
"firstName": "Michael", | |
"lastName": "Davis", | |
"middleName": "Joseph", | |
"addresses": [ | |
{ | |
"type": "Home", | |
"street": "741 Maple Dr", | |
"city": "Riverside", | |
"state": "OH", | |
"zipCode": "33333" | |
}, | |
{ | |
"type": "Business", | |
"street": "852 Commerce St", | |
"city": "Downtown", | |
"state": "NY", | |
"zipCode": "44444" | |
} | |
], | |
"phoneNumber": "555-753-9514", | |
"emailAddress": "michael.davis@email.com" | |
}, | |
{ | |
"firstName": "Sarah", | |
"lastName": "Wilson", | |
"middleName": "Anne", | |
"addresses": [ | |
{ | |
"type": "Home", | |
"street": "159 Cherry Ln", | |
"city": "Suburbia", | |
"state": "NJ", | |
"zipCode": "55555" | |
} | |
], | |
"phoneNumber": "555-951-7532", | |
"emailAddress": "sarah.wilson@email.com" | |
}, | |
{ | |
"firstName": "David", | |
"lastName": "Taylor", | |
"middleName": "Christopher", | |
"addresses": [ | |
{ | |
"type": "Home", | |
"street": "357 Birch St", | |
"city": "Townsville", | |
"state": "PA", | |
"zipCode": "66666" | |
}, | |
{ | |
"type": "Other", | |
"street": "951 Beach Rd", | |
"city": "Seaside", | |
"state": "FL", | |
"zipCode": "77777" | |
} | |
], | |
"phoneNumber": "555-159-3570", | |
"emailAddress": "david.taylor@email.com" | |
}, | |
{ | |
"firstName": "Jennifer", | |
"lastName": "Anderson", | |
"middleName": "Marie", | |
"addresses": [ | |
{ | |
"type": "Business", | |
"street": "753 Market St", | |
"city": "Big City", | |
"state": "IL", | |
"zipCode": "88888" | |
} | |
], | |
"phoneNumber": "555-357-1590", | |
"emailAddress": "jennifer.anderson@email.com" | |
}, | |
{ | |
"firstName": "James", | |
"lastName": "Thomas", | |
"middleName": "Edward", | |
"addresses": [ | |
{ | |
"type": "Home", | |
"street": "246 Willow Way", | |
"city": "Greenville", | |
"state": "SC", | |
"zipCode": "12121" | |
}, | |
{ | |
"type": "Business", | |
"street": "135 Tech Park", | |
"city": "Silicon Valley", | |
"state": "CA", | |
"zipCode": "34343" | |
} | |
], | |
"phoneNumber": "555-246-1357", | |
"emailAddress": "james.thomas@email.com" | |
}, | |
{ | |
"firstName": "Lisa", | |
"lastName": "Martinez", | |
"middleName": "Nicole", | |
"addresses": [ | |
{ | |
"type": "Home", | |
"street": "864 Sunflower St", | |
"city": "Pleasantville", | |
"state": "AZ", | |
"zipCode": "56565" | |
} | |
], | |
"phoneNumber": "555-864-2468", | |
"emailAddress": "lisa.martinez@email.com" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment