|
| 1 | +{ |
| 2 | + "null_value": null, |
| 3 | + "empty_string": "", |
| 4 | + "zero_integer": 0, |
| 5 | + "negative_integer": -42, |
| 6 | + "large_integer": 1234567890123456789, |
| 7 | + "decimal_number": 3.14159, |
| 8 | + "negative_decimal_number": -2.71828, |
| 9 | + "empty_array": [], |
| 10 | + "single_element_array": ["single_value"], |
| 11 | + "nested_array": [[[[[]]]]], |
| 12 | + "array_with_mixed_types": [42, "string", true, null, {"key": "value"}], |
| 13 | + "empty_object": {}, |
| 14 | + "simple_object": { |
| 15 | + "key": "value" |
| 16 | + }, |
| 17 | + "nested_object": { |
| 18 | + "level1": { |
| 19 | + "level2": { |
| 20 | + "level3": "deep_value" |
| 21 | + } |
| 22 | + } |
| 23 | + }, |
| 24 | + "object_with_array_values": { |
| 25 | + "numbers": [1, 2, 3], |
| 26 | + "strings": ["one", "two", "three"] |
| 27 | + }, |
| 28 | + "boolean_true": true, |
| 29 | + "boolean_false": false, |
| 30 | + "unicode_characters": "こんにちは", |
| 31 | + "long_string": "This is a very long string that might be used to test buffer or memory limits in certain systems...", |
| 32 | + "special_characters_string": "!@#$%^&*()_+-=[]{}|;:',.<>?/~`", |
| 33 | + "complex_structure": { |
| 34 | + "array_of_objects": [ |
| 35 | + {"id": 1, "name": "Alice"}, |
| 36 | + {"id": 2, "name": "Bob"} |
| 37 | + ], |
| 38 | + "object_with_null": { |
| 39 | + "name": null, |
| 40 | + "age": 30 |
| 41 | + }, |
| 42 | + "boolean_array": [true, false, true, true], |
| 43 | + "nested_mixed_structure": { |
| 44 | + "array_in_object": { |
| 45 | + "deep_array": [{"key": "value"}, [1, 2, 3], true] |
| 46 | + }, |
| 47 | + "object_in_array": [ |
| 48 | + {"inner_key": "inner_value"}, |
| 49 | + [false, "test"] |
| 50 | + ] |
| 51 | + } |
| 52 | + } |
| 53 | +} |
0 commit comments