Skip to content

JSON⚑

Usage⚑

Strings⚑

{
    "my_key": "my_string" 
}

Integer and floats⚑

{
    "my_int": 2,
    "my_float": 3.5
}

Array⚑

{
    "my_list": ["test", 5, "test3"]
}

Objects⚑

{
    "my_object": {
        "name": "Test Object",
        "childs": [
            {
                "name": "Child object 1"
            }
        ]
    }
}