store.json 716 B

12345678910111213141516171819202122232425262728293031
  1. { "store": {
  2. "book": [
  3. { "category": "reference",
  4. "author": "Nigel Rees",
  5. "title": "Sayings of the Century",
  6. "price": 8.95
  7. },
  8. { "category": "fiction",
  9. "author": "Evelyn Waugh",
  10. "title": "Sword of Honour",
  11. "price": 12.99
  12. },
  13. { "category": "fiction",
  14. "author": "Herman Melville",
  15. "title": "Moby Dick",
  16. "isbn": "0-553-21311-3",
  17. "price": 8.99
  18. },
  19. { "category": "fiction",
  20. "author": "J. R. R. Tolkien",
  21. "title": "The Lord of the Rings",
  22. "isbn": "0-395-19395-8",
  23. "price": 22.99
  24. }
  25. ],
  26. "bicycle": {
  27. "color": "red",
  28. "price": 19.95
  29. }
  30. }
  31. }