{
"string": "test",
"number": 43,
"boolean": true,
"null": null,
"array_of_strings": ["test1", "test2"],
"array_of_numbers": [1, 2, 3],
"array_of_booleans": [true, false],
"array_of_nulls": [null, null],
"array_of_objects": [
{
"string": "test1"
},
{
"string": "test2"
}
],
"object": {
"string": "test"
}
}