Last active
August 29, 2015 14:11
-
-
Save cmlarsen/82b688a431f8caed1285 to your computer and use it in GitHub Desktop.
Garage Browse Build List
This file contains hidden or 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
/* | |
* | |
* categoryOrder is the sort order for the item within the category | |
*/ | |
var myJson = [ | |
{ | |
"userName" : "Wile E. Coyote", | |
"build" : { | |
"id" : 1234567890, | |
"name" : "Cheesy Rider", | |
"creationDate" : "yyyy-MM-ddTHH:mmZ", | |
"updatedDate" : "yyyy-MM-ddTHH:mmZ", | |
"affiliations" : [ | |
{ | |
"name" : "Mosquito Fleet", | |
"location" : "Seattle, Washington" | |
} | |
], | |
"description" : "Lorem Ipsum Dolor Amit", | |
"images" : [ | |
{ | |
"thumb" : "http://ThumbURL", | |
"img" : "http://ImageURL" | |
}, | |
{ | |
"thumb" : "http://ThumbURL", | |
"img" : "http://ImageURL" | |
}, | |
{ | |
"thumb" : "http://ThumbURL", | |
"img" : "http://ImageURL" | |
} | |
], | |
"attributes" :[ | |
{ | |
"key" : "year", | |
"value" : "1980", | |
"category" : "details", | |
"count" : null, | |
"link" : null, | |
"categoryOrder" :1 | |
}, | |
{ | |
"key" : "make", | |
"value" : "Honda", | |
"category" : "details", | |
"count" : null, | |
"link" : null, | |
"categoryOrder" :2 | |
}, | |
{ | |
"key" : "make", | |
"value" : "Hobbit", | |
"category" : "details", | |
"count" : null, | |
"link" : null, | |
"categoryOrder" :3 | |
}, | |
{ | |
"key" : "engine", | |
"value" : "Honda PA50II", | |
"category" : "engine", | |
"count" : 96, | |
"link" : null, | |
"categoryOrder" :1 | |
}, | |
{ | |
"key" : "cylinder", | |
"value" : "Honda 70cc DR", | |
"category" : "engine", | |
"count" : 44, | |
"link" : "http://www.1977mopeds.com/honda-70cc-dr-cylinder-kit.html", | |
"categoryOrder" :2 | |
}, | |
{ | |
"key" : "crank", | |
"value" : "Honda Hobbit Aluminum Stuffed", | |
"category" : "engine", | |
"count" : 51, | |
"link" : "http://www.1977mopeds.com/honda-hobbit-performance-crank.html", | |
"categoryOrder" :3 | |
}, | |
{ | |
"key" : "pipe", | |
"value" : "Honda Hobbit Camino Proma", | |
"category" : "exhaust", | |
"count" : 46, | |
"link" : "http://www.1977mopeds.com/honda-proma-exhaust.html", | |
"categoryOrder" :1 | |
}, | |
{ | |
"key" : "ignition", | |
"value" : "Honda Hobbit CDI", | |
"category" : "electrical", | |
"count" : 26, | |
"link" : "http://www.1977mopeds.com/honda-cdi-ignition-system.html", | |
"categoryOrder" :1 | |
}, | |
{ | |
"key" : "clutch", | |
"value" : "Stock Clutch", | |
"category" : "transmission", | |
"count" : 177, | |
"link" : "http://garage.1977mopeds.com/browse/builds/?product=3765", | |
"categoryOrder" :1 | |
}, | |
{ | |
"key" : "carb", | |
"value" : "Mikuni 24mm TM", | |
"category" : "carburetion", | |
"count" : 177, | |
"link" : "http://www.1977mopeds.com/mikuni-tm-24mm-flatslide-carb.html", | |
"categoryOrder" :1 | |
}, | |
{ | |
"key" : "main jet", | |
"value" : "150", | |
"category" : "carburetion", | |
"count" : 177, | |
"link" : "http://www.1977mopeds.com/mikuni-tm-24mm-flatslide-carb.html", | |
"categoryOrder" :2 | |
}, | |
{ | |
"key" : "idle jet", | |
"value" : "48", | |
"category" : "carburetion", | |
"count" : 5, | |
"link" : "http://www.1977mopeds.com/mikuni-tm-24mm-flatslide-carb.html", | |
"categoryOrder" :3 | |
}, | |
{ | |
"key" : "starter jet", | |
"value" : "52", | |
"category" : "carburetion", | |
"count" : 10, | |
"link" : "http://www.1977mopeds.com/mikuni-tm-24mm-flatslide-carb.html", | |
"categoryOrder" :4 | |
} | |
] | |
} | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment