Paste JSON Formatted List:

Usage: paste a JSON with the list of definitions and words defined in this format:

{
    "nameOfList": "General Knowledge",
    "list": [
        {"definition": "The capital of France", "wordsDefined": "Paris"},
        {"definition": "The largest planet", "wordsDefined": "Jupiter"}
    ]   
}
                    
You can use this prompt with an LLM (for example claude or chatGPT) to turn a list you have into the right format:

Here's a list of definitions:

[THE LIST YOU HAVE]

Turn this list of definitions into the following JSON format:

{
    "nameOfList",
    "list": [
        {"definition", "wordsDefined"},
    ]
}

Only the raw JSON, no comments, intro, backtick block.