mirror of
https://github.com/typicode/json-server.git
synced 2025-08-06 15:19:25 +08:00
20 lines
230 B
JSON
20 lines
230 B
JSON
{
|
|
"posts": [
|
|
{
|
|
"id": 2,
|
|
"body": "bar"
|
|
}
|
|
],
|
|
"comments": [
|
|
{
|
|
"id": 1,
|
|
"published": true,
|
|
"postId": 1
|
|
},
|
|
{
|
|
"id": 2,
|
|
"published": false,
|
|
"postId": 1
|
|
}
|
|
]
|
|
} |