remghoost

jsonTest

Apr 10th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.17 KB | None | 0 0
  1. {
  2. "bookstore": {
  3. "name": "Greenleaf Books",
  4. "location": "123 Maple Street, Springfield, USA",
  5. "contact": {
  6. "phone": "+1-555-1234",
  7. "email": "[email protected]",
  8. "website": "www.greenleafbooks.com"
  9. },
  10. "hours": {
  11. "monday": "9:00 AM - 6:00 PM",
  12. "tuesday": "9:00 AM - 6:00 PM",
  13. "wednesday": "9:00 AM - 6:00 PM",
  14. "thursday": "9:00 AM - 8:00 PM",
  15. "friday": "9:00 AM - 6:00 PM",
  16. "saturday": "10:00 AM - 5:00 PM",
  17. "sunday": "11:00 AM - 4:00 PM"
  18. },
  19. "employees": [
  20. {
  21. "id": 1,
  22. "name": "Alice Johnson",
  23. "position": "Manager",
  24. "email": "[email protected]",
  25. "phone": "+1-555-5678"
  26. },
  27. {
  28. "id": 2,
  29. "name": "Bob Smith",
  30. "position": "Assistant Manager",
  31. "email": "[email protected]",
  32. "phone": "+1-555-8765"
  33. },
  34. {
  35. "id": 3,
  36. "name": "Charlie Brown",
  37. "position": "Sales Associate",
  38. "email": "[email protected]",
  39. "phone": "+1-555-4321"
  40. },
  41. {
  42. "id": 4,
  43. "name": "Diana Prince",
  44. "position": "Cashier",
  45. "email": "[email protected]",
  46. "phone": "+1-555-1122"
  47. }
  48. ],
  49. "books": [
  50. {
  51. "isbn": "978-3-16-148410-0",
  52. "title": "The Great Gatsby",
  53. "author": "F. Scott Fitzgerald",
  54. "genre": "Fiction",
  55. "price": 12.99,
  56. "stock": 20,
  57. "publisher": "Scribner",
  58. "published_date": "1925-04-10"
  59. },
  60. {
  61. "isbn": "978-0-451-52493-5",
  62. "title": "1984",
  63. "author": "George Orwell",
  64. "genre": "Dystopian",
  65. "price": 9.99,
  66. "stock": 15,
  67. "publisher": "Signet Classic",
  68. "published_date": "1949-06-08"
  69. },
  70. {
  71. "isbn": "978-0-618-05699-7",
  72. "title": "To Kill a Mockingbird",
  73. "author": "Harper Lee",
  74. "genre": "Fiction",
  75. "price": 8.99,
  76. "stock": 25,
  77. "publisher": "J.B. Lippincott & Co.",
  78. "published_date": "1960-07-11"
  79. },
  80. {
  81. "isbn": "978-0-452-28423-4",
  82. "title": "The Catcher in the Rye",
  83. "author": "J.D. Salinger",
  84. "genre": "Fiction",
  85. "price": 7.99,
  86. "stock": 18,
  87. "publisher": "Little, Brown and Company",
  88. "published_date": "1951-07-16"
  89. },
  90. {
  91. "isbn": "978-0-393-04002-9",
  92. "title": "The Lord of the Rings",
  93. "author": "J.R.R. Tolkien",
  94. "genre": "Fantasy",
  95. "price": 29.99,
  96. "stock": 10,
  97. "publisher": "Houghton Mifflin",
  98. "published_date": "1954-07-29"
  99. },
  100. {
  101. "isbn": "978-0-7432-7356-5",
  102. "title": "The Da Vinci Code",
  103. "author": "Dan Brown",
  104. "genre": "Mystery",
  105. "price": 14.99,
  106. "stock": 30,
  107. "publisher": "Doubleday",
  108. "published_date": "2003-03-18"
  109. },
  110. {
  111. "isbn": "978-0-385-50420-1",
  112. "title": "The Girl with the Dragon Tattoo",
  113. "author": "Stieg Larsson",
  114. "genre": "Crime",
  115. "price": 11.99,
  116. "stock": 22,
  117. "publisher": "Knopf",
  118. "published_date": "2005-08-01"
  119. },
  120. {
  121. "isbn": "978-0-399-18422-1",
  122. "title": "The Hunger Games",
  123. "author": "Suzanne Collins",
  124. "genre": "Science Fiction",
  125. "price": 10.99,
  126. "stock": 28,
  127. "publisher": "Scholastic Press",
  128. "published_date": "2008-09-14"
  129. },
  130. {
  131. "isbn": "978-0-553-27875-7",
  132. "title": "The Hobbit",
  133. "author": "J.R.R. Tolkien",
  134. "genre": "Fantasy",
  135. "price": 13.99,
  136. "stock": 15,
  137. "publisher": "Houghton Mifflin",
  138. "published_date": "1937-09-21"
  139. },
  140. {
  141. "isbn": "978-0-316-76948-8",
  142. "title": "The Fault in Our Stars",
  143. "author": "John Green",
  144. "genre": "Young Adult",
  145. "price": 9.99,
  146. "stock": 35,
  147. "publisher": "Dutton Books",
  148. "published_date": "2012-01-10"
  149. }
  150. ]
  151. }
  152. }
  153.  
Advertisement
Add Comment
Please, Sign In to add comment