forked from altef/logipar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcats.json
1829 lines (1829 loc) · 61.1 KB
/
cats.json
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
[
{
"Activeness": "3",
"Breed": "Russian Blue",
"Coat": "Short",
"Country": "Russia",
"Description": "Russian cats are reserved with strangers until they have fully assessed them.",
"Docility": "4",
"Friendliness": 3,
"Grooming": 2,
"Hardiness": "4",
"Health": "4",
"Independence": "4",
"Intelligence": "4",
"Key facts": "Requires an outdoor enclosure, \nNeeds little grooming, \nPatient with children and other animals",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 15,
"Lifespan upper": 20,
"Need for attention": "3",
"Origin": "Natural",
"Pattern": "Solid blue",
"Playfulness": "3",
"Shedding": "4",
"Size": "Medium",
"Tags": "Sociable, Intelligent, Friendly, Playful",
"Vocality": "1",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "4",
"Breed": "Balinese",
"Coat": "Long",
"Country": "United States",
"Description": "Balinese cats are extremely affectionate and make wonderful, entertaining and totally dominating pets.",
"Docility": "1",
"Friendliness": 4,
"Grooming": 2,
"Hardiness": "2",
"Health": "2",
"Independence": "1",
"Intelligence": "5",
"Key facts": "Happiest in pairs, \nSuited to indoor and outdoor life, \nNeeds little grooming",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 18,
"Lifespan upper": 22,
"Need for attention": "5",
"Origin": "",
"Pattern": "Colorpoint",
"Playfulness": "5",
"Shedding": "3",
"Size": "Medium",
"Tags": "Loyal, Loving, Sociable, Vocal, Lively, Intelligent, Active, Playful",
"Vocality": "5",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "3",
"Breed": "Siberian",
"Coat": "Semi-long",
"Country": "Russia",
"Description": "Despite their size, Siberian cats are quite agile and like to jump to high places.",
"Docility": "3",
"Friendliness": 4,
"Grooming": 2,
"Hardiness": "5",
"Health": "4",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Suited to indoor and outdoor life, \nNeeds a lot of grooming, \nHappiest in pairs",
"Length lower": 17,
"Length upper": 25,
"Lifespan lower": 11,
"Lifespan upper": 15,
"Need for attention": "3",
"Origin": "Natural",
"Pattern": "All",
"Playfulness": "4",
"Shedding": "4",
"Size": "Medium",
"Tags": "Lively, Intelligent, Playful, Affectionate",
"Vocality": "2",
"Weight lower": 8,
"Weight upper": 17
},
{
"Activeness": "4",
"Breed": "Singapura",
"Coat": "Short",
"Country": "Singapore",
"Description": "3.75kg at their largest, the Singapura is the smallest recognised breed of cat.",
"Docility": "1",
"Friendliness": 4,
"Grooming": 1,
"Hardiness": "2",
"Health": "4",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Needs moderate grooming, \nBest suited to indoor life, \nRequires a lot of attention",
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": "5",
"Origin": "Crossbreed: Burmese and Abyssinian",
"Pattern": "Ticked",
"Playfulness": "5",
"Shedding": "2",
"Size": "Small",
"Tags": "Confident, Playful, Intelligent, Friendly, Sociable",
"Vocality": "2",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": null,
"Breed": "Khao Manee",
"Coat": "Short",
"Country": "Thailand",
"Description": "The name Khao Manee translates to \u201cwhite gem\u201d in their native Thailand.",
"Docility": null,
"Friendliness": null,
"Grooming": null,
"Hardiness": null,
"Health": null,
"Independence": null,
"Intelligence": null,
"Key facts": "Needs moderate grooming, \nBest suited to indoor life, \nGood with people",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 10,
"Lifespan upper": 12,
"Need for attention": null,
"Origin": "Natural",
"Pattern": "Solid white",
"Playfulness": null,
"Shedding": null,
"Size": "Medium",
"Tags": "Sociable, Active, Vocal, Playful",
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "5",
"Breed": "Cornish Rex",
"Coat": "Rex",
"Country": "United Kingdom",
"Description": "The Cornish Rex is a loving, sociable cat who is known to remain playful even into old age.",
"Docility": "1",
"Friendliness": 4,
"Grooming": 1,
"Hardiness": "2",
"Health": "3",
"Independence": "2",
"Intelligence": "4",
"Key facts": "Needs moderate grooming, \nRequires an outdoor enclosure, \nNeeds a lot of exercise",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 12,
"Lifespan upper": 16,
"Need for attention": "5",
"Origin": "Mutation",
"Pattern": "All",
"Playfulness": "5",
"Shedding": "2",
"Size": "Medium",
"Tags": "Active, Playful, Sociable, Vocal, Affectionate",
"Vocality": "1",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": null,
"Breed": "European Burmese",
"Coat": "Short",
"Country": null,
"Description": null,
"Docility": null,
"Friendliness": 5,
"Grooming": 0,
"Hardiness": null,
"Health": "1",
"Independence": null,
"Intelligence": "5",
"Key facts": null,
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": null,
"Origin": null,
"Pattern": null,
"Playfulness": "5",
"Shedding": "2",
"Size": "Medium",
"Tags": null,
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "3",
"Breed": "Cymric",
"Coat": "Long",
"Country": "United Kingdom",
"Description": "The Cymric's unique build and strong back legs make them incredibly skilled at jumping.",
"Docility": "4",
"Friendliness": 4,
"Grooming": 3,
"Hardiness": "1",
"Health": "3",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Needs moderate grooming, \nSuited to indoor and outdoor life, \nNeeds a lot of exercise",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 8,
"Lifespan upper": 14,
"Need for attention": "3",
"Origin": "Mutation, from original Manx",
"Pattern": "All but colorpoint",
"Playfulness": "3",
"Shedding": "4",
"Size": "Medium",
"Tags": "Calm, Sociable, Even-tempered, Affectionate",
"Vocality": "2",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "5",
"Breed": "Abyssinian",
"Coat": "Short",
"Country": "Ethiopia",
"Description": "A busy cat who wants to take part in all the household activities.",
"Docility": "1",
"Friendliness": 4,
"Grooming": 2,
"Hardiness": "2",
"Health": "2",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Needs little grooming, \nRequires a lot of attention, \nSuited to indoor and outdoor life",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 12,
"Lifespan upper": 16,
"Need for attention": "4",
"Origin": "Natural",
"Pattern": "Ticked",
"Playfulness": "5",
"Shedding": "3",
"Size": "Medium",
"Tags": "Sociable, Active, Loyal, Vocal, Loving",
"Vocality": "1",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": null,
"Breed": "Australian Mist",
"Coat": "Short",
"Country": "Australia",
"Description": "The Australian Mist is one of the only cat breeds that could go into any type of household.",
"Docility": null,
"Friendliness": null,
"Grooming": null,
"Hardiness": null,
"Health": null,
"Independence": null,
"Intelligence": null,
"Key facts": "Needs little grooming, \nSuited to indoor and outdoor life, \nPatient with children and other animals",
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": null,
"Origin": "Crossbreed: Abyssinian and Burmese",
"Pattern": "Spotted or tabby",
"Playfulness": null,
"Shedding": null,
"Size": "Medium",
"Tags": "Sociable, Adaptable, Quiet",
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": null,
"Breed": "British Longhair",
"Coat": "Long",
"Country": "United Kingdom",
"Description": "These cats have a friendly, balanced and peaceful character which means they get along well with the whole household.",
"Docility": null,
"Friendliness": null,
"Grooming": null,
"Hardiness": null,
"Health": null,
"Independence": null,
"Intelligence": null,
"Key facts": "Needs a lot of grooming, \nSuited to indoor and outdoor life, \nPatient with children and other animals",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 15,
"Lifespan upper": 17,
"Need for attention": null,
"Origin": "",
"Pattern": "All",
"Playfulness": null,
"Shedding": null,
"Size": "Medium",
"Tags": "Calm, Sociable, Quiet, Friendly, Even-tempered",
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "2",
"Breed": "British Shorthair",
"Coat": "Short",
"Country": "United Kingdom",
"Description": "The British Shorthair is known to be the inspiration for the Cheshire Cat in Lewis Carroll\u2019s \u201cAlice in Wonderland\u201d.",
"Docility": "4",
"Friendliness": 4,
"Grooming": 2,
"Hardiness": "3",
"Health": "4",
"Independence": "4",
"Intelligence": "4",
"Key facts": "Needs moderate grooming, \nSuited to indoor and outdoor life, \nLow maintenance",
"Length lower": 22,
"Length upper": 25,
"Lifespan lower": 14,
"Lifespan upper": 20,
"Need for attention": "1",
"Origin": "Natural",
"Pattern": "All",
"Playfulness": "3",
"Shedding": "3",
"Size": "Medium",
"Tags": "Loyal, Affectionate, Quiet, Intelligent",
"Vocality": "2",
"Weight lower": 7,
"Weight upper": 17
},
{
"Activeness": "5",
"Breed": "Egyptian Mau",
"Coat": "Short",
"Country": "Egypt",
"Description": "It is said by admirers that the Egyptian Mau has the finest reflexes of any cat.",
"Docility": "1",
"Friendliness": 3,
"Grooming": 1,
"Hardiness": "3",
"Health": "4",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Needs little grooming, \nSuited to indoor and outdoor life, \nCan be easily startled",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 13,
"Lifespan upper": 16,
"Need for attention": "4",
"Origin": "Natural",
"Pattern": "Spotted",
"Playfulness": "5",
"Shedding": "3",
"Size": "Medium",
"Tags": "Lively, Active, Sensitive, Playful, Intelligent",
"Vocality": "4",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "5",
"Breed": "Tonkinese",
"Coat": "Short",
"Country": "Myanmar",
"Description": "Tonkinese cats are very vocal and communicate their needs to their owners out loud.",
"Docility": "3",
"Friendliness": 4,
"Grooming": 1,
"Hardiness": "3",
"Health": "2",
"Independence": "2",
"Intelligence": "4",
"Key facts": "Requires a lot of attention, \nNeeds moderate grooming, \nSuited to indoor and outdoor life",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 10,
"Lifespan upper": 16,
"Need for attention": "4",
"Origin": "Crossbreed: Burmese and Siamese",
"Pattern": "Colorpoint, mink, or solid",
"Playfulness": "4",
"Shedding": "2",
"Size": "Medium",
"Tags": "Active, Affectionate, Alert, Friendly",
"Vocality": "4",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "4",
"Breed": "Japanese Bobtail",
"Coat": "Short/long",
"Country": "Japan",
"Description": "Full of energy, always playful, loving, endearing and happy, Japanese Bobtail cats have a very friendly and sociable nature.",
"Docility": "2",
"Friendliness": 4,
"Grooming": 2,
"Hardiness": "3",
"Health": "4",
"Independence": "2",
"Intelligence": "4",
"Key facts": "Needs moderate grooming, \nBest suited to indoor life, \nGood with people",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 15,
"Lifespan upper": 18,
"Need for attention": "4",
"Origin": "Natural, mutation",
"Pattern": "All but colorpoint and ticked",
"Playfulness": "5",
"Shedding": "3",
"Size": "Medium",
"Tags": "Intelligent, Playful, Energetic, Loving, Friendly, Lively, Vocal",
"Vocality": "4",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "3",
"Breed": "American Wirehair",
"Coat": "Rex",
"Country": "United States",
"Description": "American Wirehairs have made a name for themselves as popular family pets thanks to their relaxed, happy nature.",
"Docility": "2",
"Friendliness": 3,
"Grooming": 2,
"Hardiness": "3",
"Health": "5",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Needs moderate grooming, \nBest suited to indoor life, \nPatient with children and other animals",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 15,
"Lifespan upper": 16,
"Need for attention": "3",
"Origin": "Mutation",
"Pattern": "All but colorpoint",
"Playfulness": "4",
"Shedding": "3",
"Size": "Medium",
"Tags": "Calm, Sociable, Quiet, Affectionate, Playful, Intelligent, Independent",
"Vocality": "3",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "4",
"Breed": "Pixiebob",
"Coat": "Short",
"Country": "United States",
"Description": "Pixiebob cats are the only breed that accepts polydactyls, and can have up to seven toes on each foot.",
"Docility": "2",
"Friendliness": 4,
"Grooming": 4,
"Hardiness": "4",
"Health": "5",
"Independence": "2",
"Intelligence": "5",
"Key facts": "Needs moderate grooming, \nSuited to indoor and outdoor life, \nPatient with children and other animals",
"Length lower": 20,
"Length upper": 24,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": "4",
"Origin": "Mutation (falsely claimed to be a bobcat hybrid early on)",
"Pattern": "Spotted",
"Playfulness": "4",
"Shedding": "4",
"Size": "Medium",
"Tags": "Intelligent, Sociable, Active, Playful",
"Vocality": "3",
"Weight lower": 8,
"Weight upper": 17
},
{
"Activeness": "1",
"Breed": "Himalayan",
"Coat": "Long",
"Country": "United States and United Kingdom",
"Description": null,
"Docility": "5",
"Friendliness": 3,
"Grooming": 5,
"Hardiness": "2",
"Health": "2",
"Independence": "2",
"Intelligence": "2",
"Key facts": null,
"Length lower": null,
"Length upper": null,
"Lifespan lower": 9,
"Lifespan upper": 15,
"Need for attention": "4",
"Origin": "Crossbreed: Persian and Siamese",
"Pattern": "Colorpoint",
"Playfulness": "3",
"Shedding": "5",
"Size": "Medium to large",
"Tags": null,
"Vocality": "1",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "2",
"Breed": "Birman",
"Coat": "Semi-long",
"Country": "Developed in France (foundation stock from Burma, etc.)",
"Description": null,
"Docility": "5",
"Friendliness": 4,
"Grooming": 4,
"Hardiness": "3",
"Health": "2",
"Independence": "2",
"Intelligence": "3",
"Key facts": null,
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": "4",
"Origin": "Crossbreed: original Birman (near extinction) with Persian and Siamese",
"Pattern": "Colorpoint with white feet",
"Playfulness": "3",
"Shedding": "3",
"Size": null,
"Tags": null,
"Vocality": "1",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "5",
"Breed": "Somali",
"Coat": "Long",
"Country": "Somalia",
"Description": "The Somali is a very intelligent cat that loves to play; many will fetch toys, open cupboards and play with water.",
"Docility": "1",
"Friendliness": 4,
"Grooming": 3,
"Hardiness": "2",
"Health": "2",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Needs a lot of exercise, \nRequires an outdoor enclosure, \nNeeds moderate grooming",
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": "4",
"Origin": "Mutation",
"Pattern": "Ticked",
"Playfulness": "5",
"Shedding": "4",
"Size": "Medium",
"Tags": "Active, Intelligent, Playful, Affectionate",
"Vocality": "1",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "4",
"Breed": "York Chocolate",
"Coat": "Long",
"Country": "United States (New York)",
"Description": null,
"Docility": "5",
"Friendliness": 5,
"Grooming": 1,
"Hardiness": "4",
"Health": null,
"Independence": "4",
"Intelligence": "4",
"Key facts": null,
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": "4",
"Origin": "Natural",
"Pattern": "Solid brown",
"Playfulness": "4",
"Shedding": null,
"Size": null,
"Tags": null,
"Vocality": "1",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "4",
"Breed": "Norwegian Forest",
"Coat": "Long",
"Country": "Norway",
"Description": "It\u2019s believed that the ancestors of the Norwegian Forest Cat were the household pets of the Norwegian Vikings.",
"Docility": "4",
"Friendliness": 4,
"Grooming": 3,
"Hardiness": "4",
"Health": "2",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Suited to outdoor life, \nGood with children, \nA cat tree is essential",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 14,
"Lifespan upper": 16,
"Need for attention": "3",
"Origin": "Natural",
"Pattern": "Traditional, sepia, or mink",
"Playfulness": "4",
"Shedding": "4",
"Size": "Large",
"Tags": "Calm, Even-tempered, Playful, Active",
"Vocality": "1",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": null,
"Breed": "Colorpoint Shorthair",
"Coat": "Short",
"Country": "",
"Description": null,
"Docility": null,
"Friendliness": 4,
"Grooming": 1,
"Hardiness": null,
"Health": "2",
"Independence": null,
"Intelligence": "4",
"Key facts": null,
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": null,
"Origin": "",
"Pattern": "Colorpoint",
"Playfulness": "5",
"Shedding": "2",
"Size": null,
"Tags": null,
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "4",
"Breed": "American Bobtail",
"Coat": "Short/long",
"Country": "United States",
"Description": "American Bobtails are playful, intelligent cats who can be taught to play fetch, hide and seek, and many other games.",
"Docility": "2",
"Friendliness": 4,
"Grooming": 3,
"Hardiness": "4",
"Health": "4",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Needs moderate grooming, \nBest suited to indoor life, \nPatient with children and other animals",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 13,
"Lifespan upper": 15,
"Need for attention": "4",
"Origin": "Mutation",
"Pattern": "All",
"Playfulness": "4",
"Shedding": "4",
"Size": "Large",
"Tags": "Sociable, Calm, Even-tempered, Loving, Intelligent, Affectionate, Friendly, Playful",
"Vocality": "3",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "4",
"Breed": "Korat",
"Coat": "Short",
"Country": "Thailand",
"Description": "Energetic, intelligent, affectionate and exclusive, Korats accept other cats, but have a dominant nature and will ensure they\u2019re in charge.",
"Docility": "1",
"Friendliness": 3,
"Grooming": 1,
"Hardiness": "2",
"Health": "4",
"Independence": "2",
"Intelligence": "4",
"Key facts": "Needs little grooming, \nSuited to indoor and outdoor life, \nShouldn\u2019t be left alone",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 15,
"Lifespan upper": 20,
"Need for attention": "4",
"Origin": "Natural",
"Pattern": "Solid blue",
"Playfulness": "4",
"Shedding": "1",
"Size": "Medium",
"Tags": "Energetic, Intelligent, Affectionate, Sensitive, Calm, Quiet",
"Vocality": "3",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": null,
"Breed": "Peterbald",
"Coat": "Hairless/flocked, velour, brush, or straight",
"Country": "Russia",
"Description": "The Peterbalds are very intelligent, lively and playful. These cats remain playful and lively throughout their life.",
"Docility": null,
"Friendliness": null,
"Grooming": null,
"Hardiness": null,
"Health": null,
"Independence": null,
"Intelligence": null,
"Key facts": "Best suited to indoor life, \nNeeds moderate grooming, \nPatient with children and other animals",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 12,
"Lifespan upper": 15,
"Need for attention": null,
"Origin": "Crossbreed: Donskoy, Oriental Shorthair and Siamese; early: Balinese and Javanese",
"Pattern": "All",
"Playfulness": null,
"Shedding": null,
"Size": "Medium",
"Tags": "Intelligent, Lively, Playful",
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "5",
"Breed": "Ocicat",
"Coat": "Short",
"Country": "United States",
"Description": "The Ocicat may look wild, but it is actually a devoted family cat.",
"Docility": "1",
"Friendliness": 4,
"Grooming": 1,
"Hardiness": "3",
"Health": "3",
"Independence": "2",
"Intelligence": "4",
"Key facts": "Needs little grooming, \nSuited to indoor and outdoor life, \nPatient with children and other animals",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 15,
"Lifespan upper": 18,
"Need for attention": "4",
"Origin": "Crossbreed: Abyssinian, American Shorthair and Siamese",
"Pattern": "Spotted",
"Playfulness": "5",
"Shedding": "2",
"Size": "Medium",
"Tags": "Sociable, Active, Confident, Intelligent",
"Vocality": "4",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": null,
"Breed": "Chinese Li Hua",
"Coat": "Short",
"Country": "China",
"Description": null,
"Docility": null,
"Friendliness": 4,
"Grooming": 1,
"Hardiness": null,
"Health": "3",
"Independence": null,
"Intelligence": "4",
"Key facts": null,
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": null,
"Origin": "Natural",
"Pattern": "Striped tabby",
"Playfulness": "4",
"Shedding": "3",
"Size": null,
"Tags": null,
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "3",
"Breed": "Manx",
"Coat": "Short/long",
"Country": "United Kingdom",
"Description": "Manx cats are known for their excellent jumping skills, due to their unique build and powerful hind legs.",
"Docility": "4",
"Friendliness": 3,
"Grooming": 3,
"Hardiness": "1",
"Health": "3",
"Independence": "3",
"Intelligence": "4",
"Key facts": "Suited to indoor and outdoor life, \nNeeds moderate grooming, \nGood with people",
"Length lower": null,
"Length upper": null,
"Lifespan lower": 8,
"Lifespan upper": 14,
"Need for attention": "3",
"Origin": "Natural, mutation",
"Pattern": "All but colorpoint",
"Playfulness": "4",
"Shedding": "3",
"Size": "Medium",
"Tags": "Even-tempered, Sociable, Quiet, Playful",
"Vocality": "2",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "2",
"Breed": "Ragdoll",
"Coat": "Long",
"Country": "United States",
"Description": "A relaxed and happy cat that is generally loving and laid-back.",
"Docility": "5",
"Friendliness": 4,
"Grooming": 4,
"Hardiness": "3",
"Health": "3",
"Independence": "2",
"Intelligence": "4",
"Key facts": "Needs moderate grooming, \nBest suited to indoor life, \nPatient with children and other animals",
"Length lower": 17,
"Length upper": 21,
"Lifespan lower": 12,
"Lifespan upper": 17,
"Need for attention": "2",
"Origin": "Mutation (behavioral) in a crossbreed, presumed Persian or Turkish Angora and Birman or Burmese",
"Pattern": "Colorpoint, mitted, or bicolor",
"Playfulness": "3",
"Shedding": "4",
"Size": "Large",
"Tags": "Affectionate, Calm, Sociable, Friendly",
"Vocality": "2",
"Weight lower": 10,
"Weight upper": 20
},
{
"Activeness": "5",
"Breed": "Javanese",
"Coat": "Long",
"Country": "Developed in the United States and Canada (foundation stock from Southeast Asia)",
"Description": null,
"Docility": "2",
"Friendliness": 4,
"Grooming": 2,
"Hardiness": "3",
"Health": "2",
"Independence": "1",
"Intelligence": "5",
"Key facts": null,
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": "5",
"Origin": "Crossbreed: Balinese, with some Colorpoint Shorthair, Oriental Longhair and Siamese",
"Pattern": "Colorpoint",
"Playfulness": "5",
"Shedding": "3",
"Size": null,
"Tags": null,
"Vocality": "5",
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": null,
"Breed": "Thai",
"Coat": "Short",
"Country": "Thailand",
"Description": "Thai cats are very active and playful, but they are calmer than Siamese cats.",
"Docility": null,
"Friendliness": null,
"Grooming": null,
"Hardiness": null,
"Health": null,
"Independence": null,
"Intelligence": null,
"Key facts": "Requires a lot of attention, \nBest suited to indoor life, \nNeeds little grooming",
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": null,
"Origin": "Natural",
"Pattern": "Colorpoint",
"Playfulness": null,
"Shedding": null,
"Size": "Medium",
"Tags": "Affectionate, Vocal, Sociable, Playful, Active",
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "3",
"Breed": "Bombay",
"Coat": "Short",
"Country": "United States",
"Description": "Bombays are sweet, cuddly and outgoing, making intelligent, affectionate companions.",
"Docility": "4",
"Friendliness": 4,
"Grooming": 1,
"Hardiness": "3",
"Health": "4",
"Independence": "2",
"Intelligence": "3",
"Key facts": "Needs little grooming, \nSuited to indoor and outdoor life, \nShouldn\u2019t be left alone",
"Length lower": 13,
"Length upper": 20,
"Lifespan lower": 12,
"Lifespan upper": 16,
"Need for attention": "3",
"Origin": "Crossbreed: American Shorthair and Burmese",
"Pattern": "Solid black",
"Playfulness": "4",
"Shedding": "2",
"Size": "Medium",
"Tags": "Intelligent, Affectionate, Sociable, Even-tempered, Active",
"Vocality": "2",
"Weight lower": 8,
"Weight upper": 15
},
{
"Activeness": null,
"Breed": "Sokoke",
"Coat": "Short",
"Country": "Kenya",
"Description": "The Sokoke is believed to be one of the rarest domestic cat breeds in the world.",
"Docility": null,
"Friendliness": null,
"Grooming": null,
"Hardiness": null,
"Health": null,
"Independence": null,
"Intelligence": null,
"Key facts": "Needs moderate grooming, \nSuited to indoor and outdoor life, \nLow maintenance",
"Length lower": null,
"Length upper": null,
"Lifespan lower": null,
"Lifespan upper": null,
"Need for attention": null,
"Origin": "Natural",
"Pattern": "Ticked tabby",
"Playfulness": null,
"Shedding": null,
"Size": "Medium",
"Tags": "Intelligent, Active, Affectionate, Playful",
"Vocality": null,
"Weight lower": null,
"Weight upper": null
},
{
"Activeness": "5",
"Breed": "Turkish Van",
"Coat": "Semi-long",
"Country": "Turkey",
"Description": "The Turkish Van likes playing with water and is the only cat known to swim of their own free will.",
"Docility": "2",
"Friendliness": 3,
"Grooming": 3,
"Hardiness": "4",
"Health": "4",
"Independence": "3",
"Intelligence": "4",