forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnested-unicode.json
More file actions
124 lines (124 loc) · 2.96 KB
/
nested-unicode.json
File metadata and controls
124 lines (124 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"utilisateurs": [
{
"id": 1,
"nom": "Marie Dubois",
"profil": {
"courriel": "[email protected]",
"âge": 28,
"adresse": {
"rue": "123 Rue de la Paix",
"ville": "Paris",
"pays": "France",
"code": "75001",
"coordonnées": {
"lat": 48.8566,
"lng": 2.3522
}
},
"préférences": {
"notifications": true,
"thème": "sombre",
"langue": "fr"
}
},
"publications": [
{
"id": 101,
"titre": "Première publication",
"contenu": "Bonjour le monde! 🌍",
"étiquettes": [
"intro",
"bienvenue"
],
"mentions": 42,
"commentaires": [
{
"utilisateur": "jean",
"texte": "Excellent! 👍",
"horodatage": 1609459200
},
{
"utilisateur": "sophie",
"texte": "Bienvenue! 🎉",
"horodatage": 1609462800
}
]
}
]
},
{
"id": 2,
"nom": "田中太郎",
"profil": {
"courriel": "[email protected]",
"âge": 35,
"adresse": {
"rue": "東京都渋谷区1-2-3",
"ville": "東京",
"pays": "日本",
"code": "150-0001",
"coordonnées": {
"lat": 35.6762,
"lng": 139.6503
}
},
"préférences": {
"notifications": false,
"thème": "明るい",
"langue": "ja"
}
},
"publications": [
{
"id": 201,
"titre": "技術について",
"contenu": "新しい技術を議論しています",
"étiquettes": [
"技術",
"議論"
],
"mentions": 156,
"commentaires": [
{
"utilisateur": "山田",
"texte": "興味深い! ⭐",
"horodatage": 1609466400
}
]
}
]
},
{
"id": 3,
"nom": "Иван Петров",
"profil": {
"courriel": "[email protected]",
"âge": 32,
"adresse": {
"rue": "Невский проспект 123",
"ville": "Санкт-Петербург",
"pays": "Россия",
"code": "190000",
"coordonnées": {
"lat": 59.9343,
"lng": 30.3351
}
},
"préférences": {
"notifications": true,
"thème": "тёмная",
"langue": "ru"
}
},
"publications": []
}
],
"métadonnées": {
"version": "1.0",
"horodatage": 1609459200,
"total": 3,
"mis_en_cache": false,
"description": "Données avec caractères Unicode: émojis 😀, alphabets cyrilliques Й, japonais 漢字, et accents français é"
}
}