diff options
| -rw-r--r-- | bot/resources/tags/empty-json.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bot/resources/tags/empty-json.md b/bot/resources/tags/empty-json.md new file mode 100644 index 000000000..98bfe5fa7 --- /dev/null +++ b/bot/resources/tags/empty-json.md @@ -0,0 +1,14 @@ +When using JSON you might run into the following error: +``` +JSONDecodeError: Expecting value: line 1 column 1 (char 0) +``` +This error could have appeared because you just created the JSON file and there is nothing in it at the moment. + +Whilst having the data empty is no problem, the file itself may never be completely empty. You most likely want one of the following in your json +``` +object +array +``` +An object is the most common of the 2, and is created by editing your file to read `{}`. + +Different data types are also supported. If you wish to read more on these, please reffer to the following article: https://www.tutorialspoint.com/json/json_data_types.htm |