{
// comments everywhere
key1: "value1", // trailing comment
// another comment
key2: [1, 2, 3,], // trailing comma in array
key3: {
a: 1,
b: 2, // trailing comma in object
},
"key-with-hyphens": true,
"key with spaces and \"quotes\"": "and escapes \\",
empty_string: "",
empty_object: {},
empty_array: []
}