Created
August 4, 2015 15:57
-
-
Save arkangelx/2b27618e5c614a25d3b4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cats": [ | |
{ | |
"breed": "exotic shorthair", | |
"legs": 4, | |
"image": { | |
"xxhdpi": "exotic_shorthair", | |
"xhdpi": "", | |
"hdpi": "", | |
"mdpi": "", | |
"ldpi": "" | |
}, | |
"prefered-food": "packaged tuna", | |
"colour": "#55gg00", | |
"size": "medium", | |
"whiskers": 12 | |
}, | |
{ | |
"breed": "bengal", | |
"legs": 4, | |
"image": { | |
"xxhdpi": "bengal", | |
"xhdpi": "", | |
"hdpi": "", | |
"mdpi": "", | |
"ldpi": "" | |
}, | |
"prefered-food": "packaged tuna", | |
"colour": "#bb00hh", | |
"size": "small", | |
"whiskers": 24 | |
}, | |
{ | |
"breed": "bombay", | |
"legs": 4, | |
"image": { | |
"xxhdpi": "bombay", | |
"xhdpi": "", | |
"hdpi": "", | |
"mdpi": "", | |
"ldpi": "" | |
}, | |
"prefered-food": "packaged tuna", | |
"colour": "#225533", | |
"size": "tiny", | |
"whiskers": 128 | |
}, | |
{ | |
"breed": "burmese", | |
"legs": 4, | |
"image": { | |
"xxhdpi": "burmese", | |
"xhdpi": "", | |
"hdpi": "", | |
"mdpi": "", | |
"ldpi": "" | |
}, | |
"prefered-food": "special cat milk", | |
"colour": "#222222", | |
"size": "large", | |
"whiskers": 1024 | |
}, | |
{ | |
"breed": "snowshoe", | |
"legs": 4, | |
"image": { | |
"xxhdpi": "snowshoe", | |
"xhdpi": "", | |
"hdpi": "", | |
"mdpi": "", | |
"ldpi": "" | |
}, | |
"prefered-food": "chicken teriyaki", | |
"colour": "#11bbee", | |
"size": "extra-large", | |
"whiskers": 500 | |
}, | |
{ | |
"breed": "siamese", | |
"legs": 4.5, | |
"image": { | |
"xxhdpi": "siamese", | |
"xhdpi": "", | |
"hdpi": "", | |
"mdpi": "", | |
"ldpi": "" | |
}, | |
"prefered-food": "special cat milk", | |
"colour": "#4a6e8c", | |
"size": "gigantic", | |
"whiskers": 1 | |
}, | |
{ | |
"breed": "turkish van", | |
"legs": 1, | |
"image": { | |
"xxhdpi": "turkish_van", | |
"xhdpi": "", | |
"hdpi": "", | |
"mdpi": "", | |
"ldpi": "" | |
}, | |
"prefered-food": "packaged salmon", | |
"colour": "#123456", | |
"size": "smurf-size", | |
"whiskers": 0 | |
}, | |
{ | |
"breed": "maine coon", | |
"legs": 8, | |
"image": { | |
"xxhdpi": "maine_coon", | |
"xhdpi": "", | |
"hdpi": "", | |
"mdpi": "", | |
"ldpi": "" | |
}, | |
"prefered-food": "special cat milk", | |
"colour": "#654321", | |
"size": "really-large", | |
"whiskers": -10 | |
} | |
], | |
"food": [ | |
{ | |
"name": "packaged tuna", | |
"package": "tin" | |
}, | |
{ | |
"name": "packaged salmon", | |
"package": "tin" | |
}, | |
{ | |
"name": "chicken teriyaki", | |
"package": "plate" | |
}, | |
{ | |
"name": "special cat milk", | |
"package": "tetabrick" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment