-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
1040 lines (1040 loc) · 26.9 KB
/
db.json
File metadata and controls
1040 lines (1040 loc) · 26.9 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"user": [
{
"id": 1,
"names": "John Doe",
"email": "user@example.com",
"address": "147 Nairobi Kenya",
"password": "password@123",
"date": 7845555
},
{
"id": 2,
"names": "Mary Ann",
"email": "user2@example.com",
"address": "10 Nairobi Kenya",
"password": "password@123",
"date": 7845555
}
],
"tasks": [
{
"id": 1,
"completed": false,
"title": "Complete Angular tutorial",
"description": "Finish the official Angular documentation tutorial.",
"priority": "high",
"dueDate": "2024-11-01"
},
{
"id": 2,
"completed": false,
"title": "Task 2: Write unit tests for API",
"description": "Description for task 2.",
"priority": "medium",
"dueDate": "2024-11-02"
},
{
"id": 3,
"completed": true,
"title": "Task 3: Refactor user authentication",
"description": "Description for task 3.",
"priority": "low",
"dueDate": "2024-11-03"
},
{
"id": 4,
"completed": false,
"title": "Task 4: Design new landing page",
"description": "Description for task 4.",
"priority": "high",
"dueDate": "2024-11-04"
},
{
"id": 5,
"completed": true,
"title": "Task 5: Set up CI/CD pipeline",
"description": "Description for task 5.",
"priority": "medium",
"dueDate": "2024-11-05"
},
{
"id": 6,
"completed": false,
"title": "Task 6: Write blog post on web accessibility",
"description": "Description for task 6.",
"priority": "low",
"dueDate": "2024-11-06"
},
{
"id": 7,
"completed": true,
"title": "Task 7: Optimize image assets",
"description": "Description for task 7.",
"priority": "high",
"dueDate": "2024-11-07"
},
{
"id": 8,
"completed": false,
"title": "Task 8: Prepare client presentation",
"description": "Description for task 8.",
"priority": "medium",
"dueDate": "2024-11-08"
},
{
"id": 9,
"completed": true,
"title": "Task 9: Research on AI integration",
"description": "Description for task 9.",
"priority": "low",
"dueDate": "2024-11-09"
},
{
"id": 10,
"completed": false,
"title": "Task 10: Document API endpoints",
"description": "Description for task 10.",
"priority": "high",
"dueDate": "2024-11-10"
},
{
"id": 11,
"completed": true,
"title": "Task 11: Fix critical bugs in payment gateway",
"description": "Description for task 11.",
"priority": "medium",
"dueDate": "2024-11-11"
},
{
"id": 12,
"completed": false,
"title": "Task 12: Create test cases for frontend",
"description": "Description for task 12.",
"priority": "low",
"dueDate": "2024-11-12"
},
{
"id": 13,
"completed": true,
"title": "Task 13: Conduct usability testing",
"description": "Description for task 13.",
"priority": "high",
"dueDate": "2024-11-13"
},
{
"id": 14,
"completed": false,
"title": "Task 14: Write server migration plan",
"description": "Description for task 14.",
"priority": "medium",
"dueDate": "2024-11-14"
},
{
"id": 15,
"completed": true,
"title": "Task 15: Review pull requests",
"description": "Description for task 15.",
"priority": "low",
"dueDate": "2024-11-15"
},
{
"id": 16,
"completed": false,
"title": "Task 16: Upgrade database schema",
"description": "Description for task 16.",
"priority": "high",
"dueDate": "2024-11-16"
},
{
"id": 17,
"completed": true,
"title": "Task 17: Conduct team training session",
"description": "Description for task 17.",
"priority": "medium",
"dueDate": "2024-11-17"
},
{
"id": 18,
"completed": false,
"title": "Task 18: Improve caching mechanisms",
"description": "Description for task 18.",
"priority": "low",
"dueDate": "2024-11-18"
},
{
"id": 19,
"completed": true,
"title": "Task 19: Finalize project timeline",
"description": "Description for task 19.",
"priority": "high",
"dueDate": "2024-11-19"
},
{
"id": 20,
"completed": false,
"title": "Task 20: Update documentation",
"description": "Description for task 20.",
"priority": "medium",
"dueDate": "2024-11-20"
},
{
"id": 21,
"completed": true,
"title": "Task 21: Optimize database queries",
"description": "Description for task 21.",
"priority": "low",
"dueDate": "2024-11-21"
},
{
"id": 22,
"completed": false,
"title": "Task 22: Implement caching strategy",
"description": "Description for task 22.",
"priority": "high",
"dueDate": "2024-11-22"
},
{
"id": 23,
"completed": true,
"title": "Task 23: Code review session",
"description": "Description for task 23.",
"priority": "medium",
"dueDate": "2024-11-23"
},
{
"id": 24,
"completed": false,
"title": "Task 24: Update CI configuration",
"description": "Description for task 24.",
"priority": "low",
"dueDate": "2024-11-24"
},
{
"id": 25,
"completed": true,
"title": "Task 25: Fix UI bugs",
"description": "Description for task 25.",
"priority": "high",
"dueDate": "2024-11-25"
},
{
"id": 26,
"completed": false,
"title": "Task 26: Refactor legacy code",
"description": "Description for task 26.",
"priority": "medium",
"dueDate": "2024-11-26"
},
{
"id": 27,
"completed": true,
"title": "Task 27: Integrate third-party API",
"description": "Description for task 27.",
"priority": "low",
"dueDate": "2024-11-27"
},
{
"id": 28,
"completed": false,
"title": "Task 28: Write end-to-end tests",
"description": "Description for task 28.",
"priority": "high",
"dueDate": "2024-11-28"
},
{
"id": 29,
"completed": true,
"title": "Task 29: Improve error handling",
"description": "Description for task 29.",
"priority": "medium",
"dueDate": "2024-11-29"
},
{
"id": 30,
"completed": false,
"title": "Task 30: Update dependencies",
"description": "Description for task 30.",
"priority": "low",
"dueDate": "2024-11-30"
},
{
"id": 31,
"completed": true,
"title": "Task 31: Optimize assets",
"description": "Description for task 31.",
"priority": "high",
"dueDate": "2024-11-31"
},
{
"id": 32,
"completed": false,
"title": "Task 32: Improve security measures",
"description": "Description for task 32.",
"priority": "medium",
"dueDate": "2024-11-32"
},
{
"id": 33,
"completed": true,
"title": "Task 33: Add new features",
"description": "Description for task 33.",
"priority": "low",
"dueDate": "2024-11-33"
},
{
"id": 34,
"completed": false,
"title": "Task 34: Monitor performance",
"description": "Description for task 34.",
"priority": "high",
"dueDate": "2024-11-34"
},
{
"id": 35,
"completed": true,
"title": "Task 35: Refactor codebase",
"description": "Description for task 35.",
"priority": "medium",
"dueDate": "2024-11-35"
},
{
"id": 36,
"completed": false,
"title": "Task 36: Enhance UI design",
"description": "Description for task 36.",
"priority": "low",
"dueDate": "2024-11-36"
},
{
"id": 37,
"completed": true,
"title": "Task 37: Optimize build process",
"description": "Description for task 37.",
"priority": "high",
"dueDate": "2024-11-37"
},
{
"id": 38,
"completed": false,
"title": "Task 38: Update project roadmap",
"description": "Description for task 38.",
"priority": "medium",
"dueDate": "2024-11-38"
},
{
"id": 39,
"completed": true,
"title": "Task 39: Implement new API endpoints",
"description": "Description for task 39.",
"priority": "low",
"dueDate": "2024-11-39"
},
{
"id": 40,
"completed": false,
"title": "Task 40: Conduct stakeholder meeting",
"description": "Description for task 40.",
"priority": "high",
"dueDate": "2024-11-40"
},
{
"id": 41,
"completed": true,
"title": "Task 41: Deploy to staging",
"description": "Description for task 41.",
"priority": "medium",
"dueDate": "2024-11-41"
},
{
"id": 42,
"completed": false,
"title": "Task 42: Perform code audit",
"description": "Description for task 42.",
"priority": "low",
"dueDate": "2024-11-42"
},
{
"id": 43,
"completed": true,
"title": "Task 43: Update system architecture",
"description": "Description for task 43.",
"priority": "high",
"dueDate": "2024-11-43"
},
{
"id": 44,
"completed": false,
"title": "Task 44: Research new technologies",
"description": "Description for task 44.",
"priority": "medium",
"dueDate": "2024-11-44"
},
{
"id": 45,
"completed": true,
"title": "Task 45: Conduct market analysis",
"description": "Description for task 45.",
"priority": "low",
"dueDate": "2024-11-45"
},
{
"id": 46,
"completed": false,
"title": "Task 46: Improve user onboarding",
"description": "Description for task 46.",
"priority": "high",
"dueDate": "2024-11-46"
},
{
"id": 47,
"completed": true,
"title": "Task 47: Update testing strategy",
"description": "Description for task 47.",
"priority": "medium",
"dueDate": "2024-11-47"
},
{
"id": 48,
"completed": false,
"title": "Task 48: Finalize release notes",
"description": "Description for task 48.",
"priority": "low",
"dueDate": "2024-11-48"
},
{
"id": 49,
"completed": true,
"title": "Task 49: Optimize SEO",
"description": "Description for task 49.",
"priority": "high",
"dueDate": "2024-11-49"
},
{
"id": 50,
"completed": false,
"title": "Task 50: Review analytics data",
"description": "Description for task 50.",
"priority": "medium",
"dueDate": "2024-11-50"
},
{
"id": 51,
"completed": false,
"title": "Coffee hour",
"description": "Finish the official Angular documentation tutorial.",
"priority": "high",
"dueDate": "2024-11-01"
},
{
"id": 52,
"completed": false,
"title": "Complete Angular tutorial 2",
"description": "Finish the official Angular documentation tutorial.",
"priority": "low",
"dueDate": "2024-11-01"
}
],
"pets": [
{
"id": 1,
"name": "Pet 1",
"breed": "Breed 1",
"age": 2,
"gender": "Male",
"ownerId": 2,
"description": "Description for pet 1.",
"careSuggestions": "Care suggestions for pet 1.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet1.jpg"
},
{
"id": 2,
"name": "Pet 2",
"breed": "Breed 2",
"age": 3,
"gender": "Female",
"ownerId": 3,
"description": "Description for pet 2.",
"careSuggestions": "Care suggestions for pet 2.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet2.jpg"
},
{
"id": 3,
"name": "Pet 3",
"breed": "Breed 3",
"age": 4,
"gender": "Male",
"ownerId": 4,
"description": "Description for pet 3.",
"careSuggestions": "Care suggestions for pet 3.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet3.jpg"
},
{
"id": 4,
"name": "Pet 4",
"breed": "Breed 4",
"age": 5,
"gender": "Female",
"ownerId": 5,
"description": "Description for pet 4.",
"careSuggestions": "Care suggestions for pet 4.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet4.jpg"
},
{
"id": 5,
"name": "Pet 5",
"breed": "Breed 5",
"age": 6,
"gender": "Male",
"ownerId": 1,
"description": "Description for pet 5.",
"careSuggestions": "Care suggestions for pet 5.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet5.jpg"
},
{
"id": 6,
"name": "Pet 6",
"breed": "Breed 6",
"age": 7,
"gender": "Female",
"ownerId": 2,
"description": "Description for pet 6.",
"careSuggestions": "Care suggestions for pet 6.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet6.jpg"
},
{
"id": 7,
"name": "Pet 7",
"breed": "Breed 7",
"age": 8,
"gender": "Male",
"ownerId": 3,
"description": "Description for pet 7.",
"careSuggestions": "Care suggestions for pet 7.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet7.jpg"
},
{
"id": 8,
"name": "Pet 8",
"breed": "Breed 8",
"age": 9,
"gender": "Female",
"ownerId": 4,
"description": "Description for pet 8.",
"careSuggestions": "Care suggestions for pet 8.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet8.jpg"
},
{
"id": 9,
"name": "Pet 9",
"breed": "Breed 9",
"age": 10,
"gender": "Male",
"ownerId": 5,
"description": "Description for pet 9.",
"careSuggestions": "Care suggestions for pet 9.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet9.jpg"
},
{
"id": 10,
"name": "Pet 10",
"breed": "Breed 10",
"age": 1,
"gender": "Female",
"ownerId": 1,
"description": "Description for pet 10.",
"careSuggestions": "Care suggestions for pet 10.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet10.jpg"
},
{
"id": 11,
"name": "Pet 11",
"breed": "Breed 11",
"age": 2,
"gender": "Male",
"ownerId": 2,
"description": "Description for pet 11.",
"careSuggestions": "Care suggestions for pet 11.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet11.jpg"
},
{
"id": 12,
"name": "Pet 12",
"breed": "Breed 12",
"age": 3,
"gender": "Female",
"ownerId": 3,
"description": "Description for pet 12.",
"careSuggestions": "Care suggestions for pet 12.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet12.jpg"
},
{
"id": 13,
"name": "Pet 13",
"breed": "Breed 13",
"age": 4,
"gender": "Male",
"ownerId": 4,
"description": "Description for pet 13.",
"careSuggestions": "Care suggestions for pet 13.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet13.jpg"
},
{
"id": 14,
"name": "Pet 14",
"breed": "Breed 14",
"age": 5,
"gender": "Female",
"ownerId": 5,
"description": "Description for pet 14.",
"careSuggestions": "Care suggestions for pet 14.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet14.jpg"
},
{
"id": 15,
"name": "Pet 15",
"breed": "Breed 15",
"age": 6,
"gender": "Male",
"ownerId": 1,
"description": "Description for pet 15.",
"careSuggestions": "Care suggestions for pet 15.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet15.jpg"
},
{
"id": 16,
"name": "Pet 16",
"breed": "Breed 16",
"age": 7,
"gender": "Female",
"ownerId": 2,
"description": "Description for pet 16.",
"careSuggestions": "Care suggestions for pet 16.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet16.jpg"
},
{
"id": 17,
"name": "Pet 17",
"breed": "Breed 17",
"age": 8,
"gender": "Male",
"ownerId": 3,
"description": "Description for pet 17.",
"careSuggestions": "Care suggestions for pet 17.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet17.jpg"
},
{
"id": 18,
"name": "Pet 18",
"breed": "Breed 18",
"age": 9,
"gender": "Female",
"ownerId": 4,
"description": "Description for pet 18.",
"careSuggestions": "Care suggestions for pet 18.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet18.jpg"
},
{
"id": 19,
"name": "Pet 19",
"breed": "Breed 19",
"age": 10,
"gender": "Male",
"ownerId": 5,
"description": "Description for pet 19.",
"careSuggestions": "Care suggestions for pet 19.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet19.jpg"
},
{
"id": 20,
"name": "Pet 20",
"breed": "Breed 20",
"age": 1,
"gender": "Female",
"ownerId": 1,
"description": "Description for pet 20.",
"careSuggestions": "Care suggestions for pet 20.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet20.jpg"
},
{
"id": 21,
"name": "Pet 21",
"breed": "Breed 21",
"age": 2,
"gender": "Male",
"ownerId": 2,
"description": "Description for pet 21.",
"careSuggestions": "Care suggestions for pet 21.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet21.jpg"
},
{
"id": 22,
"name": "Pet 22",
"breed": "Breed 22",
"age": 3,
"gender": "Female",
"ownerId": 3,
"description": "Description for pet 22.",
"careSuggestions": "Care suggestions for pet 22.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet22.jpg"
},
{
"id": 23,
"name": "Pet 23",
"breed": "Breed 23",
"age": 4,
"gender": "Male",
"ownerId": 4,
"description": "Description for pet 23.",
"careSuggestions": "Care suggestions for pet 23.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet23.jpg"
},
{
"id": 24,
"name": "Pet 24",
"breed": "Breed 24",
"age": 5,
"gender": "Female",
"ownerId": 5,
"description": "Description for pet 24.",
"careSuggestions": "Care suggestions for pet 24.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet24.jpg"
},
{
"id": 25,
"name": "Pet 25",
"breed": "Breed 25",
"age": 6,
"gender": "Male",
"ownerId": 1,
"description": "Description for pet 25.",
"careSuggestions": "Care suggestions for pet 25.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet25.jpg"
},
{
"id": 26,
"name": "Pet 26",
"breed": "Breed 26",
"age": 7,
"gender": "Female",
"ownerId": 2,
"description": "Description for pet 26.",
"careSuggestions": "Care suggestions for pet 26.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet26.jpg"
},
{
"id": 27,
"name": "Pet 27",
"breed": "Breed 27",
"age": 8,
"gender": "Male",
"ownerId": 3,
"description": "Description for pet 27.",
"careSuggestions": "Care suggestions for pet 27.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet27.jpg"
},
{
"id": 28,
"name": "Pet 28",
"breed": "Breed 28",
"age": 9,
"gender": "Female",
"ownerId": 4,
"description": "Description for pet 28.",
"careSuggestions": "Care suggestions for pet 28.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet28.jpg"
},
{
"id": 29,
"name": "Pet 29",
"breed": "Breed 29",
"age": 10,
"gender": "Male",
"ownerId": 5,
"description": "Description for pet 29.",
"careSuggestions": "Care suggestions for pet 29.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet29.jpg"
},
{
"id": 30,
"name": "Pet 30",
"breed": "Breed 30",
"age": 1,
"gender": "Female",
"ownerId": 1,
"description": "Description for pet 30.",
"careSuggestions": "Care suggestions for pet 30.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet30.jpg"
},
{
"id": 31,
"name": "Pet 31",
"breed": "Breed 31",
"age": 2,
"gender": "Male",
"ownerId": 2,
"description": "Description for pet 31.",
"careSuggestions": "Care suggestions for pet 31.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet31.jpg"
},
{
"id": 32,
"name": "Pet 32",
"breed": "Breed 32",
"age": 3,
"gender": "Female",
"ownerId": 3,
"description": "Description for pet 32.",
"careSuggestions": "Care suggestions for pet 32.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet32.jpg"
},
{
"id": 33,
"name": "Pet 33",
"breed": "Breed 33",
"age": 4,
"gender": "Male",
"ownerId": 4,
"description": "Description for pet 33.",
"careSuggestions": "Care suggestions for pet 33.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet33.jpg"
},
{
"id": 34,
"name": "Pet 34",
"breed": "Breed 34",
"age": 5,
"gender": "Female",
"ownerId": 5,
"description": "Description for pet 34.",
"careSuggestions": "Care suggestions for pet 34.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet34.jpg"
},
{
"id": 35,
"name": "Pet 35",
"breed": "Breed 35",
"age": 6,
"gender": "Male",
"ownerId": 1,
"description": "Description for pet 35.",
"careSuggestions": "Care suggestions for pet 35.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet35.jpg"
},
{
"id": 36,
"name": "Pet 36",
"breed": "Breed 36",
"age": 7,
"gender": "Female",
"ownerId": 2,
"description": "Description for pet 36.",
"careSuggestions": "Care suggestions for pet 36.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet36.jpg"
},
{
"id": 37,
"name": "Pet 37",
"breed": "Breed 37",
"age": 8,
"gender": "Male",
"ownerId": 3,
"description": "Description for pet 37.",
"careSuggestions": "Care suggestions for pet 37.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet37.jpg"
},
{
"id": 38,
"name": "Pet 38",
"breed": "Breed 38",
"age": 9,
"gender": "Female",
"ownerId": 4,
"description": "Description for pet 38.",
"careSuggestions": "Care suggestions for pet 38.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet38.jpg"
},
{
"id": 39,
"name": "Pet 39",
"breed": "Breed 39",
"age": 10,
"gender": "Male",
"ownerId": 5,
"description": "Description for pet 39.",
"careSuggestions": "Care suggestions for pet 39.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet39.jpg"
},
{
"id": 40,
"name": "Pet 40",
"breed": "Breed 40",
"age": 1,
"gender": "Female",
"ownerId": 1,
"description": "Description for pet 40.",
"careSuggestions": "Care suggestions for pet 40.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet40.jpg"
},
{
"id": 41,
"name": "Pet 41",
"breed": "Breed 41",
"age": 2,
"gender": "Male",
"ownerId": 2,
"description": "Description for pet 41.",
"careSuggestions": "Care suggestions for pet 41.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet41.jpg"
},
{
"id": 42,
"name": "Pet 42",
"breed": "Breed 42",
"age": 3,
"gender": "Female",
"ownerId": 3,
"description": "Description for pet 42.",
"careSuggestions": "Care suggestions for pet 42.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet42.jpg"
},
{
"id": 43,
"name": "Pet 43",
"breed": "Breed 43",
"age": 4,
"gender": "Male",
"ownerId": 4,
"description": "Description for pet 43.",
"careSuggestions": "Care suggestions for pet 43.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet43.jpg"
},
{
"id": 44,
"name": "Pet 44",
"breed": "Breed 44",
"age": 5,
"gender": "Female",
"ownerId": 5,
"description": "Description for pet 44.",
"careSuggestions": "Care suggestions for pet 44.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet44.jpg"
},
{
"id": 45,
"name": "Pet 45",
"breed": "Breed 45",
"age": 6,
"gender": "Male",
"ownerId": 1,
"description": "Description for pet 45.",
"careSuggestions": "Care suggestions for pet 45.",
"animalType": "Dog",
"imageUrl": "https://example.com/pet45.jpg"
},
{
"id": 46,
"name": "Pet 46",
"breed": "Breed 46",
"age": 7,
"gender": "Female",
"ownerId": 2,
"description": "Description for pet 46.",
"careSuggestions": "Care suggestions for pet 46.",
"animalType": "Cat",
"imageUrl": "https://example.com/pet46.jpg"
},
{
"id": 47,
"name": "Pet 47",
"breed": "Breed 47",
"age": 8,
"gender": "Male",
"ownerId": 3,
"description": "Description for pet 47.",
"careSuggestions": "Care suggestions for pet 47.",
"animalType": "Dog",