-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.json
38 lines (37 loc) · 852 Bytes
/
test.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
[
{
"cmd": "add-page",
"data": {
"title": "Hello World! This is my test page",
"slug": "test-page"
}
},
{
"cmd": "update-page",
"data": {
"title": "Hello World!",
"slug": "test-page",
"content": "Bonjour!"
}
},
{
"cmd": "add-category",
"data": {
"title": "Animals",
"slug": "animals",
"description": "Animals",
"children": [
{
"title": "Cats",
"slug": "cats",
"description": "Cats"
},
{
"title": "Dogs",
"slug": "dogs",
"description": "Dogs"
}
]
}
}
]