PIBD-31-Batylkin-Mobile-App/server/data.json

42 lines
741 B
JSON
Raw Normal View History

2024-01-08 22:10:47 +04:00
{
"users": [
{
"id": 1,
"login": "ivan",
"nameFirst": "Иван",
"nameLast": "Иванов"
},
{
"id": 2,
"login": "ann",
"nameFirst": "Анна",
"nameLast": "Аннова"
}
],
"pets": [
{
"id": 1,
"name": "pet1",
"note": "note",
"birthday": "10.11.2023",
"userId": 2,
"imageResourceId": 2130968592
},
{
"name": "pet2",
"note": "note",
"birthday": "24.12.2023",
"userId": 2,
"imageResourceId": 2130968593,
"id": 2
},
{
"id": 3,
"name": "pet3",
"note": "note",
"birthday": "14.12.2023",
"userId": 1,
"imageResourceId": 2130968592
}
]
}