products.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. [
  2. {
  3. "name" : "Azurite",
  4. "description" : "Some gems have hidden qualities beyond their luster, beyond their shine... Azurite is one of those gems.",
  5. "shine" : 8,
  6. "price" : 110.50,
  7. "rarity" : 7,
  8. "color" : "#CCC",
  9. "faces" : 14,
  10. "images" : [
  11. "images/gem-02.gif",
  12. "images/gem-05.gif",
  13. "images/gem-09.gif"
  14. ],
  15. "reviews" : [
  16. {
  17. "stars" : 5,
  18. "body" : "I love this gem!",
  19. "author" : "joe@example.org"
  20. },
  21. {
  22. "stars" : 1,
  23. "body" : "This gem sucks.",
  24. "author" : "tim@example.org"
  25. }
  26. ]
  27. },
  28. {
  29. "name" : "'Bloodstone",
  30. "description" : "Origin of the Bloodstone is unknown, hence its low value. It has a very high shine and 12 sides, however.",
  31. "shine" : 9,
  32. "price" : 22.90,
  33. "rarity" : 6,
  34. "color" : "#EEE",
  35. "faces" : 12,
  36. "images" : [
  37. "images/gem-01.gif",
  38. "images/gem-03.gif",
  39. "images/gem-04.gif"
  40. ],
  41. "reviews" : [
  42. {
  43. "stars" : 3,
  44. "body" : "I think this gem was just OK, could honestly use more shine, IMO.",
  45. "author" : "JimmyDean@example.org"
  46. },
  47. {
  48. "stars" : 4,
  49. "body" : "Any gem with 12 faces is for me!",
  50. "author" : "gemsRock@example.org"
  51. }
  52. ]
  53. },
  54. {
  55. "name" : "Zircon",
  56. "description" : "Zircon is our most coveted and sought after gem. You will pay much to be the proud owner of this gorgeous and high shine gem.",
  57. "shine" : 70,
  58. "price" : 1100,
  59. "rarity" : 2,
  60. "color" : "#000",
  61. "faces" : 6,
  62. "images" : [
  63. "images/gem-06.gif",
  64. "images/gem-07.gif",
  65. "images/gem-08.gif"
  66. ],
  67. "reviews" : [
  68. {
  69. "stars" : 1,
  70. "body" : "This gem is WAY too expensive for its rarity value.",
  71. "author" : "turtleguyy@example.org"
  72. },
  73. {
  74. "stars" : 1,
  75. "body" : "BBW : High Shine != High Quality.",
  76. "author" : "LouisW407@example.org"
  77. },
  78. {
  79. "stars" : 1,
  80. "body" : "Don't waste your rubles!",
  81. "author" : "nat@example.org"
  82. }
  83. ]
  84. }
  85. ]