Each word must be in a different file named [your-word-name].json.
Add the word to an existing folder corresponding to the starting letter of the word or create a folder.
The file must contain 3 keys
word: Your word
definitions: One or more definitions in an array
parts of speech: One of the 8 parts of speech the word belongs to
Add separate files of the word in different parts of speech. Name the file [(your-word)_(parts-of-speech)].json
.
{
"word": "your-word",
"definitions": [
"definition"
],
"parts-of-speech": "parts-of-speeech-of-your-word"
}
{
"word": "your-word",
"definitions": [
"definition-1",
"definition-2",
"definition-3",
],
"parts-of-speech": "parts-of-speeech-of-your-word"
}