Threads

Here's an example JSON model and explanation:

{
    "threads":[
        {
            "link":"link to the thread",
            "comments":[
                "Comment 1",
                "Comment 2",
                "Comment 3"
            ]
        },
        {
            "link":"link to the thread",
            "comments":[
                "Comment 1",
                "Comment 2",
                "Comment 3"
            ]
        }
    ]
}

You can add or remove as many threads & comments as you want, always keeping the format and leaving one.

Last updated