forked from Asabeneh/30-Days-Of-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcats.json
More file actions
2732 lines (2732 loc) · 101 KB
/
cats.json
File metadata and controls
2732 lines (2732 loc) · 101 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
[
{
"weight": {
"imperial": "7 - 10",
"metric": "3 - 5"
},
"id": "abys",
"name": "Abyssinian",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/Abyssinian.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/abyssinian",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/abyssinian",
"temperament": "Active, Energetic, Independent, Intelligent, Gentle",
"origin": "Egypt",
"country_codes": "EG",
"country_code": "EG",
"description": "The Abyssinian is easy to care for, and a joy to have in your home. They’re affectionate cats and love both people and other animals.",
"life_span": "14 - 15",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 3,
"dog_friendly": 4,
"energy_level": 5,
"grooming": 1,
"health_issues": 2,
"intelligence": 5,
"shedding_level": 2,
"social_needs": 5,
"stranger_friendly": 5,
"vocalisation": 1,
"experimental": 0,
"hairless": 0,
"natural": 1,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Abyssinian_(cat)",
"hypoallergenic": 0,
"reference_image_id": "0XYvRd7oD"
},
{
"weight": {
"imperial": "7 - 10",
"metric": "3 - 5"
},
"id": "aege",
"name": "Aegean",
"vetstreet_url": "http://www.vetstreet.com/cats/aegean-cat",
"temperament": "Affectionate, Social, Intelligent, Playful, Active",
"origin": "Greece",
"country_codes": "GR",
"country_code": "GR",
"description": "Native to the Greek islands known as the Cyclades in the Aegean Sea, these are natural cats, meaning they developed without humans getting involved in their breeding. As a breed, Aegean Cats are rare, although they are numerous on their home islands. They are generally friendly toward people and can be excellent cats for families with children.",
"life_span": "9 - 12",
"indoor": 0,
"alt_names": "",
"adaptability": 5,
"affection_level": 4,
"child_friendly": 4,
"dog_friendly": 4,
"energy_level": 3,
"grooming": 3,
"health_issues": 1,
"intelligence": 3,
"shedding_level": 3,
"social_needs": 4,
"stranger_friendly": 4,
"vocalisation": 3,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Aegean_cat",
"hypoallergenic": 0,
"reference_image_id": "ozEvzdVM-"
},
{
"weight": {
"imperial": "7 - 16",
"metric": "3 - 7"
},
"id": "abob",
"name": "American Bobtail",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanBobtail.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/american-bobtail",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-bobtail",
"temperament": "Intelligent, Interactive, Lively, Playful, Sensitive",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "American Bobtails are loving and incredibly intelligent cats possessing a distinctive wild appearance. They are extremely interactive cats that bond with their human family with great devotion.",
"life_span": "11 - 15",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 3,
"grooming": 1,
"health_issues": 1,
"intelligence": 5,
"shedding_level": 3,
"social_needs": 3,
"stranger_friendly": 3,
"vocalisation": 3,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 1,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/American_Bobtail",
"hypoallergenic": 0,
"reference_image_id": "hBXicehMA"
},
{
"weight": {
"imperial": "5 - 10",
"metric": "2 - 5"
},
"id": "acur",
"name": "American Curl",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanCurl.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/american-curl",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-curl",
"temperament": "Affectionate, Curious, Intelligent, Interactive, Lively, Playful, Social",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "Distinguished by truly unique ears that curl back in a graceful arc, offering an alert, perky, happily surprised expression, they cause people to break out into a big smile when viewing their first Curl. Curls are very people-oriented, faithful, affectionate soulmates, adjusting remarkably fast to other pets, children, and new situations.",
"life_span": "12 - 16",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 3,
"grooming": 2,
"health_issues": 1,
"intelligence": 3,
"shedding_level": 3,
"social_needs": 3,
"stranger_friendly": 3,
"vocalisation": 3,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/American_Curl",
"hypoallergenic": 0,
"reference_image_id": "xnsqonbjW"
},
{
"weight": {
"imperial": "8 - 15",
"metric": "4 - 7"
},
"id": "asho",
"name": "American Shorthair",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanShorthair.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/american-shorthair",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-shorthair",
"temperament": "Active, Curious, Easy Going, Playful, Calm",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "The American Shorthair is known for its longevity, robust health, good looks, sweet personality, and amiability with children, dogs, and other pets.",
"life_span": "15 - 17",
"indoor": 0,
"lap": 1,
"alt_names": "Domestic Shorthair",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 3,
"grooming": 1,
"health_issues": 3,
"intelligence": 3,
"shedding_level": 3,
"social_needs": 4,
"stranger_friendly": 3,
"vocalisation": 3,
"experimental": 0,
"hairless": 0,
"natural": 1,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/American_Shorthair",
"hypoallergenic": 0,
"reference_image_id": "JFPROfGtQ"
},
{
"weight": {
"imperial": "8 - 15",
"metric": "4 - 7"
},
"id": "awir",
"name": "American Wirehair",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanWirehair.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/american-wirehair",
"temperament": "Affectionate, Curious, Gentle, Intelligent, Interactive, Lively, Loyal, Playful, Sensible, Social",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "The American Wirehair tends to be a calm and tolerant cat who takes life as it comes. His favorite hobby is bird-watching from a sunny windowsill, and his hunting ability will stand you in good stead if insects enter the house.",
"life_span": "14 - 18",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 3,
"grooming": 1,
"health_issues": 3,
"intelligence": 3,
"shedding_level": 1,
"social_needs": 3,
"stranger_friendly": 3,
"vocalisation": 3,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/American_Wirehair",
"hypoallergenic": 0,
"reference_image_id": "8D--jCd21"
},
{
"weight": {
"imperial": "8 - 16",
"metric": "4 - 7"
},
"id": "amau",
"name": "Arabian Mau",
"vcahospitals_url": "",
"temperament": "Affectionate, Agile, Curious, Independent, Playful, Loyal",
"origin": "United Arab Emirates",
"country_codes": "AE",
"country_code": "AE",
"description": "Arabian Mau cats are social and energetic. Due to their energy levels, these cats do best in homes where their owners will be able to provide them with plenty of playtime, attention and interaction from their owners. These kitties are friendly, intelligent, and adaptable, and will even get along well with other pets and children.",
"life_span": "12 - 14",
"indoor": 0,
"alt_names": "Alley cat",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 4,
"grooming": 1,
"health_issues": 1,
"intelligence": 3,
"shedding_level": 1,
"social_needs": 3,
"stranger_friendly": 3,
"vocalisation": 1,
"experimental": 0,
"hairless": 0,
"natural": 1,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Arabian_Mau",
"hypoallergenic": 0,
"reference_image_id": "k71ULYfRr"
},
{
"weight": {
"imperial": "7 - 15",
"metric": "3 - 7"
},
"id": "amis",
"name": "Australian Mist",
"temperament": "Lively, Social, Fun-loving, Relaxed, Affectionate",
"origin": "Australia",
"country_codes": "AU",
"country_code": "AU",
"description": "The Australian Mist thrives on human companionship. Tolerant of even the youngest of children, these friendly felines enjoy playing games and being part of the hustle and bustle of a busy household. They make entertaining companions for people of all ages, and are happy to remain indoors between dusk and dawn or to be wholly indoor pets.",
"life_span": "12 - 16",
"indoor": 0,
"lap": 1,
"alt_names": "Spotted Mist",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 4,
"grooming": 3,
"health_issues": 1,
"intelligence": 4,
"shedding_level": 3,
"social_needs": 4,
"stranger_friendly": 4,
"vocalisation": 3,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Australian_Mist",
"hypoallergenic": 0,
"reference_image_id": "_6x-3TiCA"
},
{
"weight": {
"imperial": "4 - 10",
"metric": "2 - 5"
},
"id": "bali",
"name": "Balinese",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/Balinese.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/balinese",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/balinese",
"temperament": "Affectionate, Intelligent, Playful",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "Balinese are curious, outgoing, intelligent cats with excellent communication skills. They are known for their chatty personalities and are always eager to tell you their views on life, love, and what you’ve served them for dinner. ",
"life_span": "10 - 15",
"indoor": 0,
"alt_names": "Long-haired Siamese",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 5,
"grooming": 3,
"health_issues": 3,
"intelligence": 5,
"shedding_level": 3,
"social_needs": 5,
"stranger_friendly": 5,
"vocalisation": 5,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Balinese_(cat)",
"hypoallergenic": 1,
"reference_image_id": "13MkvUreZ"
},
{
"weight": {
"imperial": "4 - 9",
"metric": "2 - 4"
},
"id": "bamb",
"name": "Bambino",
"temperament": "Affectionate, Lively, Friendly, Intelligent",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "The Bambino is a breed of cat that was created as a cross between the Sphynx and the Munchkin breeds. The Bambino cat has short legs, large upright ears, and is usually hairless. They love to be handled and cuddled up on the laps of their family members.",
"life_span": "12 - 14",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 5,
"grooming": 1,
"health_issues": 1,
"intelligence": 5,
"shedding_level": 1,
"social_needs": 3,
"stranger_friendly": 3,
"vocalisation": 3,
"experimental": 1,
"hairless": 1,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 1,
"wikipedia_url": "https://en.wikipedia.org/wiki/Bambino_cat",
"hypoallergenic": 0,
"reference_image_id": "5AdhMjeEu"
},
{
"weight": {
"imperial": "6 - 12",
"metric": "3 - 7"
},
"id": "beng",
"name": "Bengal",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/Bengal.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/bengal",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/bengal",
"temperament": "Alert, Agile, Energetic, Demanding, Intelligent",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "Bengals are a lot of fun to live with, but they're definitely not the cat for everyone, or for first-time cat owners. Extremely intelligent, curious and active, they demand a lot of interaction and woe betide the owner who doesn't provide it.",
"life_span": "12 - 15",
"indoor": 0,
"lap": 0,
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"cat_friendly": 4,
"dog_friendly": 5,
"energy_level": 5,
"grooming": 1,
"health_issues": 3,
"intelligence": 5,
"shedding_level": 3,
"social_needs": 5,
"stranger_friendly": 3,
"vocalisation": 5,
"bidability": 3,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Bengal_(cat)",
"hypoallergenic": 1,
"reference_image_id": "O3btzLlsO"
},
{
"weight": {
"imperial": "6 - 15",
"metric": "3 - 7"
},
"id": "birm",
"name": "Birman",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/Birman.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/birman",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/birman",
"temperament": "Affectionate, Active, Gentle, Social",
"origin": "France",
"country_codes": "FR",
"country_code": "FR",
"description": "The Birman is a docile, quiet cat who loves people and will follow them from room to room. Expect the Birman to want to be involved in what you’re doing. He communicates in a soft voice, mainly to remind you that perhaps it’s time for dinner or maybe for a nice cuddle on the sofa. He enjoys being held and will relax in your arms like a furry baby.",
"life_span": "14 - 15",
"indoor": 0,
"lap": 1,
"alt_names": "Sacred Birman, Sacred Cat Of Burma",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 3,
"grooming": 2,
"health_issues": 1,
"intelligence": 3,
"shedding_level": 3,
"social_needs": 4,
"stranger_friendly": 3,
"vocalisation": 1,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Birman",
"hypoallergenic": 0,
"reference_image_id": "HOrX5gwLS"
},
{
"weight": {
"imperial": "6 - 11",
"metric": "3 - 5"
},
"id": "bomb",
"name": "Bombay",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/Bombay.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/bombay",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/bombay",
"temperament": "Affectionate, Dependent, Gentle, Intelligent, Playful",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "The the golden eyes and the shiny black coa of the Bopmbay is absolutely striking. Likely to bond most with one family member, the Bombay will follow you from room to room and will almost always have something to say about what you are doing, loving attention and to be carried around, often on his caregiver's shoulder.",
"life_span": "12 - 16",
"indoor": 0,
"lap": 1,
"alt_names": "Small black Panther",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 3,
"grooming": 1,
"health_issues": 3,
"intelligence": 5,
"shedding_level": 3,
"social_needs": 4,
"stranger_friendly": 4,
"vocalisation": 5,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Bombay_(cat)",
"hypoallergenic": 0,
"reference_image_id": "5iYq9NmT1"
},
{
"weight": {
"imperial": "8 - 18",
"metric": "4 - 8"
},
"id": "bslo",
"name": "British Longhair",
"temperament": "Affectionate, Easy Going, Independent, Intelligent, Loyal, Social",
"origin": "United Kingdom",
"country_codes": "GB",
"country_code": "GB",
"description": "The British Longhair is a very laid-back relaxed cat, often perceived to be very independent although they will enjoy the company of an equally relaxed and likeminded cat. They are an affectionate breed, but very much on their own terms and tend to prefer to choose to come and sit with their owners rather than being picked up.",
"life_span": "12 - 14",
"indoor": 0,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 4,
"grooming": 5,
"health_issues": 1,
"intelligence": 5,
"shedding_level": 1,
"social_needs": 3,
"stranger_friendly": 4,
"vocalisation": 1,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/British_Longhair",
"hypoallergenic": 0,
"reference_image_id": "7isAO4Cav"
},
{
"weight": {
"imperial": "12 - 20",
"metric": "5 - 9"
},
"id": "bsho",
"name": "British Shorthair",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/BritishShorthair.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/british-shorthair",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/british-shorthair",
"temperament": "Affectionate, Easy Going, Gentle, Loyal, Patient, calm",
"origin": "United Kingdom",
"country_codes": "GB",
"country_code": "GB",
"description": "The British Shorthair is a very pleasant cat to have as a companion, ans is easy going and placid. The British is a fiercely loyal, loving cat and will attach herself to every one of her family members. While loving to play, she doesn't need hourly attention. If she is in the mood to play, she will find someone and bring a toy to that person. The British also plays well by herself, and thus is a good companion for single people.",
"life_span": "12 - 17",
"indoor": 0,
"lap": 1,
"alt_names": "Highlander, Highland Straight, Britannica",
"adaptability": 5,
"affection_level": 4,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 2,
"grooming": 2,
"health_issues": 2,
"intelligence": 3,
"shedding_level": 4,
"social_needs": 3,
"stranger_friendly": 2,
"vocalisation": 1,
"experimental": 0,
"hairless": 0,
"natural": 1,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/British_Shorthair",
"hypoallergenic": 0,
"reference_image_id": "s4wQfYoEk"
},
{
"weight": {
"imperial": "6 - 12",
"metric": "3 - 5"
},
"id": "bure",
"name": "Burmese",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/Burmese.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/burmese",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/burmese",
"temperament": "Curious, Intelligent, Gentle, Social, Interactive, Playful, Lively",
"origin": "Burma",
"country_codes": "MM",
"country_code": "MM",
"description": "Burmese love being with people, playing with them, and keeping them entertained. They crave close physical contact and abhor an empty lap. They will follow their humans from room to room, and sleep in bed with them, preferably under the covers, cuddled as close as possible. At play, they will turn around to see if their human is watching and being entertained by their crazy antics.",
"life_span": "15 - 16",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 4,
"grooming": 1,
"health_issues": 3,
"intelligence": 5,
"shedding_level": 3,
"social_needs": 5,
"stranger_friendly": 5,
"vocalisation": 5,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Burmese_(cat)",
"hypoallergenic": 1,
"reference_image_id": "4lXnnfxac"
},
{
"weight": {
"imperial": "6 - 13",
"metric": "3 - 6"
},
"id": "buri",
"name": "Burmilla",
"cfa_url": "http://cfa.org/Breeds/BreedsAB/Burmilla.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/burmilla",
"temperament": "Easy Going, Friendly, Intelligent, Lively, Playful, Social",
"origin": "United Kingdom",
"country_codes": "GB",
"country_code": "GB",
"description": "The Burmilla is a fairly placid cat. She tends to be an easy cat to get along with, requiring minimal care. The Burmilla is affectionate and sweet and makes a good companion, the Burmilla is an ideal companion to while away a lonely evening. Loyal, devoted, and affectionate, this cat will stay by its owner, always keeping them company.",
"life_span": "10 - 15",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 4,
"energy_level": 3,
"grooming": 3,
"health_issues": 3,
"intelligence": 3,
"shedding_level": 3,
"social_needs": 4,
"stranger_friendly": 3,
"vocalisation": 5,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Burmilla",
"hypoallergenic": 0,
"reference_image_id": "jvg3XfEdC"
},
{
"weight": {
"imperial": "10 - 15",
"metric": "5 - 7"
},
"id": "cspa",
"name": "California Spangled",
"temperament": "Affectionate, Curious, Intelligent, Loyal, Social",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "Perhaps the only thing about the California spangled cat that isn’t wild-like is its personality. Known to be affectionate, gentle and sociable, this breed enjoys spending a great deal of time with its owners. They are very playful, often choosing to perch in high locations and show off their acrobatic skills.",
"life_span": "10 - 14",
"indoor": 0,
"alt_names": "Spangle",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 5,
"grooming": 1,
"health_issues": 1,
"intelligence": 5,
"shedding_level": 1,
"social_needs": 3,
"stranger_friendly": 4,
"vocalisation": 1,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/California_Spangled",
"hypoallergenic": 0,
"reference_image_id": "B1ERTmgph"
},
{
"weight": {
"imperial": "7 - 12",
"metric": "3 - 5"
},
"id": "ctif",
"name": "Chantilly-Tiffany",
"temperament": "Affectionate, Demanding, Interactive, Loyal",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "The Chantilly is a devoted companion and prefers company to being left alone. While the Chantilly is not demanding, she will \"chirp\" and \"talk\" as if having a conversation. This breed is affectionate, with a sweet temperament. It can stay still for extended periods, happily lounging in the lap of its loved one. This quality makes the Tiffany an ideal traveling companion, and an ideal house companion for senior citizens and the physically handicapped.",
"life_span": "14 - 16",
"indoor": 0,
"lap": 1,
"alt_names": "Chantilly, Foreign Longhair",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 4,
"grooming": 5,
"health_issues": 1,
"intelligence": 5,
"shedding_level": 5,
"social_needs": 3,
"stranger_friendly": 4,
"vocalisation": 5,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Chantilly-Tiffany",
"hypoallergenic": 0,
"reference_image_id": "TR-5nAd_S"
},
{
"weight": {
"imperial": "6 - 15",
"metric": "3 - 7"
},
"id": "char",
"name": "Chartreux",
"cfa_url": "http://cfa.org/Breeds/BreedsCJ/Chartreux.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/chartreux",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/chartreux",
"temperament": "Affectionate, Loyal, Intelligent, Social, Lively, Playful",
"origin": "France",
"country_codes": "FR",
"country_code": "FR",
"description": "The Chartreux is generally silent but communicative. Short play sessions, mixed with naps and meals are their perfect day. Whilst appreciating any attention you give them, they are not demanding, content instead to follow you around devotedly, sleep on your bed and snuggle with you if you’re not feeling well.",
"life_span": "12 - 15",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 2,
"grooming": 1,
"health_issues": 2,
"intelligence": 4,
"shedding_level": 3,
"social_needs": 5,
"stranger_friendly": 5,
"vocalisation": 1,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 1,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Chartreux",
"hypoallergenic": 1,
"reference_image_id": "j6oFGLpRG"
},
{
"weight": {
"imperial": "7 - 15",
"metric": "3 - 7"
},
"id": "chau",
"name": "Chausie",
"temperament": "Affectionate, Intelligent, Playful, Social",
"origin": "Egypt",
"country_codes": "EG",
"country_code": "EG",
"description": "For those owners who desire a feline capable of evoking the great outdoors, the strikingly beautiful Chausie retains a bit of the wild in its appearance but has the house manners of our friendly, familiar moggies. Very playful, this cat needs a large amount of space to be able to fully embrace its hunting instincts.",
"life_span": "12 - 14",
"indoor": 0,
"alt_names": "Nile Cat",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 4,
"grooming": 3,
"health_issues": 1,
"intelligence": 5,
"shedding_level": 3,
"social_needs": 3,
"stranger_friendly": 4,
"vocalisation": 1,
"experimental": 1,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Chausie",
"hypoallergenic": 0,
"reference_image_id": "vJ3lEYgXr"
},
{
"weight": {
"imperial": "8 - 15",
"metric": "4 - 7"
},
"id": "chee",
"name": "Cheetoh",
"temperament": "Affectionate, Gentle, Intelligent, Social",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "The Cheetoh has a super affectionate nature and real love for their human companions; they are intelligent with the ability to learn quickly. You can expect that a Cheetoh will be a fun-loving kitty who enjoys playing, running, and jumping through every room in your house.",
"life_span": "12 - 14",
"indoor": 0,
"alt_names": " ",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 4,
"grooming": 1,
"health_issues": 1,
"intelligence": 5,
"shedding_level": 1,
"social_needs": 3,
"stranger_friendly": 4,
"vocalisation": 5,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Bengal_cat#Cheetoh",
"hypoallergenic": 0,
"reference_image_id": "IFXsxmXLm"
},
{
"weight": {
"imperial": "4 - 10",
"metric": "2 - 5"
},
"id": "csho",
"name": "Colorpoint Shorthair",
"cfa_url": "http://cfa.org/Breeds/BreedsCJ/ColorpointShorthair.aspx",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/colorpoint-shorthair",
"temperament": "Affectionate, Intelligent, Playful, Social",
"origin": "United States",
"country_codes": "US",
"country_code": "US",
"description": "Colorpoint Shorthairs are an affectionate breed, devoted and loyal to their people. Sensitive to their owner’s moods, Colorpoints are more than happy to sit at your side or on your lap and purr words of encouragement on a bad day. They will constantly seek out your lap whenever it is open and in the moments when your lap is preoccupied they will stretch out in sunny spots on the ground.",
"life_span": "12 - 16",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 3,
"affection_level": 4,
"child_friendly": 4,
"cat_friendly": 3,
"dog_friendly": 4,
"energy_level": 4,
"grooming": 2,
"health_issues": 2,
"intelligence": 5,
"shedding_level": 3,
"social_needs": 4,
"stranger_friendly": 2,
"vocalisation": 5,
"bidability": 4,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 0,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Colorpoint_Shorthair",
"hypoallergenic": 0,
"reference_image_id": "oSpqGyUDS"
},
{
"weight": {
"imperial": "5 - 9",
"metric": "2 - 4"
},
"id": "crex",
"name": "Cornish Rex",
"cfa_url": "http://cfa.org/Breeds/BreedsCJ/CornishRex.aspx",
"vetstreet_url": "http://www.vetstreet.com/cats/cornish-rex",
"vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/cornish-rex",
"temperament": "Affectionate, Intelligent, Active, Curious, Playful",
"origin": "United Kingdom",
"country_codes": "GB",
"country_code": "GB",
"description": "This is a confident cat who loves people and will follow them around, waiting for any opportunity to sit in a lap or give a kiss. He enjoys being handled, making it easy to take him to the veterinarian or train him for therapy work. The Cornish Rex stay in kitten mode most of their lives and well into their senior years. ",
"life_span": "11 - 14",
"indoor": 0,
"lap": 1,
"alt_names": "",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"cat_friendly": 2,
"dog_friendly": 5,
"energy_level": 5,
"grooming": 1,
"health_issues": 2,
"intelligence": 5,
"shedding_level": 1,
"social_needs": 5,
"stranger_friendly": 3,
"vocalisation": 1,
"experimental": 0,
"hairless": 0,
"natural": 0,
"rare": 0,
"rex": 1,
"suppressed_tail": 0,
"short_legs": 0,
"wikipedia_url": "https://en.wikipedia.org/wiki/Cornish_Rex",
"hypoallergenic": 1,
"reference_image_id": "unX21IBVB"
},
{
"weight": {
"imperial": "8 - 13",
"metric": "4 - 6"
},
"id": "cymr",
"name": "Cymric",
"vetstreet_url": "http://www.vetstreet.com/cats/cymric",
"temperament": "Gentle, Loyal, Intelligent, Playful",
"origin": "Canada",
"country_codes": "CA",
"country_code": "CA",
"description": "The Cymric is a placid, sweet cat. They do not get too upset about anything that happens in their world. They are loving companions and adore people. They are smart and dexterous, capable of using his paws to get into cabinets or to open doors.",
"life_span": "8 - 14",
"indoor": 0,
"lap": 1,
"alt_names": "Spangle",
"adaptability": 5,
"affection_level": 5,
"child_friendly": 4,
"dog_friendly": 5,
"energy_level": 5,