Currently, I am utilizing the mongoimport utility to import data from a json file into mongodb with the following command:
mongoimport --db city --collection inspections ./city_inspections.json #mongo import utility
The json data structure looks like this:
{"_id":{"$oid":"56d61033a378eccde8a8354f"},"id":"10021-2015-ENFO","certificate_number":9278806,"business_name":"ATLIXCO DELI GROCERY INC.","date":"Feb 20 2015","result":"No Violation Issued","sector":"Cigarette Retail Dealer - 127","address":{"city":"RIDGEWOOD","zip":11385,"street":"MENAHAN ST","number":1712}}
Upon executing the command, I encountered the following error: https://i.sstatic.net/DpVTy.png
If anyone has a solution to resolve this error, please let me know. Thanks!