Lua JSON

local personString = '{"name": "Squid", "job": "dev"}' -- A JSON string
-- If you need to turn the json into an object:
local personJSON = json.decode(personString)
-- Now you can use it like any table:
personJSON["name"] = "Illusion Squid"
personJSON.job = "Software Engineer"
-- If you have an object and want to make it a JSON string do this:
local newPersonString = json.encode(personJSON)
-- Simple!
The Illusion Squid