suwoodblender/test_data.json

41 lines
840 B
JSON

{
"project": "Socket JSON 传输测试",
"version": "1.0.0",
"description": "这是一个用于测试 Socket JSON 传输的示例文件",
"timestamp": "2024-01-01T00:00:00",
"author": {
"name": "开发者",
"email": "developer@example.com"
},
"config": {
"server": {
"host": "localhost",
"port": 8888,
"max_connections": 5
},
"client": {
"timeout": 30,
"retry_count": 3
}
},
"test_data": {
"numbers": [1, 2, 3, 4, 5],
"strings": ["hello", "world", "测试", "数据"],
"boolean": true,
"null_value": null,
"nested_object": {
"level1": {
"level2": {
"message": "这是嵌套的 JSON 对象"
}
}
}
},
"commands": [
"get_file",
"save_file",
"list_files",
"ping"
],
"status": "ready"
}