-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathsample.json
41 lines (41 loc) · 931 Bytes
/
sample.json
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
{
"name": "~",
"type": "dir",
"contents": [
{
"name": "file1",
"type": "text",
"contents": "Hello World!",
"description": "FOOO"
},
{
"name": "pic.jpg",
"type": "img",
"contents": "/images/penguin.png",
"caption": "What a beautiful penguin."
},
{
"name": "dir1",
"type": "dir",
"contents": [
{
"name": "file2",
"type": "text",
"contents": "foo"
},
{
"name": "foo",
"type": "dir",
"contents": [
{
"name": "file3",
"type": "exec",
"contents": "http://google.com",
"description": "blahblah"
}
]
}
]
}
]
}