mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
30 lines
425 B
JSON
30 lines
425 B
JSON
{
|
|
"posts": [
|
|
{
|
|
"id": "1",
|
|
"title": "a title",
|
|
"views": 100
|
|
},
|
|
{
|
|
"id": "2",
|
|
"title": "another title",
|
|
"views": 200
|
|
}
|
|
],
|
|
"comments": [
|
|
{
|
|
"id": "1",
|
|
"text": "a comment about post 1",
|
|
"postId": "1"
|
|
},
|
|
{
|
|
"id": "2",
|
|
"text": "another comment about post 1",
|
|
"postId": "1"
|
|
}
|
|
],
|
|
"profile": {
|
|
"name": "typicode"
|
|
}
|
|
}
|