-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata.json
58 lines (58 loc) · 1.7 KB
/
data.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"users": [
{
"id": 1,
"username": "손영산",
"email": "[email protected]",
"password": "12345"
}
],
"posts": [
{
"id": 1,
"username": "손영산",
"url": "/images/dog.jpeg",
"title": "사월이를 찾아주세요",
"contents": "원흥역 3번 출구에서 시바견 사월이가 실종됐습니다.ㅠㅠ도와주세요.",
"created_at": "2021-06-03",
"readCount": 99
},
{
"id": 2,
"username": "손영산",
"url": "/images/dog.jpeg",
"title": "깨비를 찾아주세요",
"contents": "삼송공원에서 실버푸들 깨비가 실종됐습니다.ㅠㅠ도와주세요.",
"created_at": "2021-06-05",
"readCount": 50
},
{
"id": 3,
"username": "만두맨",
"url": "/images/dog.jpeg",
"title": "만두를 찾아주세요",
"contents": "신원동 터널에서 차우차우 만두가 실종됐습니다.ㅠㅠ도와주세요.",
"created_at": "2021-05-31",
"readCount": 25
},
{
"id": 4,
"username": "찐빵맨",
"url": "/images/dog.jpeg",
"title": "찐빵을 찾아주세요",
"contents": "신원동 터널에서 스핑크스 고양이 찐빵이 실종됐습니다.ㅠㅠ도와주세요.",
"created_at": "2021-05-30",
"readCount": 35
},
{
"id": 5,
"username": "쿠팡맨",
"url": "/images/dog.jpeg",
"title": "쿠팡이를 찾아주세요",
"contents": "신원동 터널에서 길냥이 쿠팡이가 실종됐습니다.ㅠㅠ도와주세요.",
"created_at": "2021-06-01",
"readCount": 65
}
],
"comments": [{ "id": 1, "contents": "comment", "postsId": 1 }]
}