Getting `Not valid JSON: expected value at line 1 column 1` while trying to import as json `npx convex import --table accounts accounts.json` JSONs formats that I tried: ```json [ { "accountNumber": "0001", "accountName": "reserviert" }, { "accountNumber": "0040", "accountName": "reserviert" } ] ``` ```json { "accounts": [ { "accountNumber": "0001", "accountName": "reserviert" }, { "accountNumber": "0040", "accountName": "reserviert" } ] } ```