Json Sample Dataset

The purpose of a JSON sample dataset is to provide a set of data that can be used to test software applications, APIs, or other systems that require input data.

Below is the list of entities for which json sample data is provided.

  1. Employee
  2. Ecommerce
  3. Weather
  4. Social Media
  5. Movie
  6. Restaurant

Employee json sample dataset

Employee Json Fields
id
name
age
gender
designation
department
salary

Sample data is provided below for 20 employee records in json format

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
[
  {
    "id": 1,
    "name": "John Smith",
    "age": 35,
    "gender": "male",
    "designation": "Software Developer",
    "department": "IT",
    "salary": 75000
  },
  {
    "id": 2,
    "name": "Sarah Johnson",
    "age": 28,
    "gender": "female",
    "designation": "Business Analyst",
    "department": "Marketing",
    "salary": 60000
  },
  {
    "id": 3,
    "name": "Michael Brown",
    "age": 45,
    "gender": "male",
    "designation": "Project Manager",
    "department": "IT",
    "salary": 90000
  },
  {
    "id": 4,
    "name": "Emily Davis",
    "age": 32,
    "gender": "female",
    "designation": "UI/UX Designer",
    "department": "Design",
    "salary": 65000
  },
  {
    "id": 5,
    "name": "David Lee",
    "age": 38,
    "gender": "male",
    "designation": "Data Analyst",
    "department": "IT",
    "salary": 80000
  },
  {
    "id": 6,
    "name": "Julia Martin",
    "age": 29,
    "gender": "female",
    "designation": "Marketing Manager",
    "department": "Marketing",
    "salary": 75000
  },
  {
    "id": 7,
    "name": "Adam Clark",
    "age": 41,
    "gender": "male",
    "designation": "Sales Manager",
    "department": "Sales",
    "salary": 95000
  },
  {
    "id": 8,
    "name": "Laura Wilson",
    "age": 27,
    "gender": "female",
    "designation": "Graphic Designer",
    "department": "Design",
    "salary": 55000
  },
  {
    "id": 9,
    "name": "Peter Harris",
    "age": 36,
    "gender": "male",
    "designation": "Software Developer",
    "department": "IT",
    "salary": 85000
  },
  {
    "id": 10,
    "name": "Jessica Lee",
    "age": 31,
    "gender": "female",
    "designation": "HR Manager",
    "department": "HR",
    "salary": 70000
  },
  {
    "id": 11,
    "name": "Mark Brown",
    "age": 40,
    "gender": "male",
    "designation": "Technical Lead",
    "department": "IT",
    "salary": 95000
  },
  {
    "id": 12,
    "name": "Emma White",
    "age": 26,
    "gender": "female",
    "designation": "Content Writer",
    "department": "Marketing",
    "salary": 55000
  },
  {
    "id": 13,
    "name": "Alex Johnson",
    "age": 33,
    "gender": "male",
    "designation": "Database Administrator",
    "department": "IT",
    "salary": 80000
  },
  {
    "id": 14,
    "name": "Olivia Davis",
    "age": 30,
    "gender": "female",
    "designation": "Content Writer",
    "department": "Marketing",
    "salary": 50000
  },
  {
    "id": 15,
    "name": "Harish Gowda",
    "age": 32,
    "gender": "male",
    "designation": "Developer",
    "department": "IT",
    "salary": 55000
  },
  {
    "id": 16,
    "name": "Mark Lewis",
    "age": 35,
    "gender": "male",
    "designation": "Graphic Designer",
    "department": "Design",
    "salary": 56000
  },
  {
    "id": 17,
    "name": "Jane Perry",
    "age": 28,
    "gender": "female",
    "designation": "Developer",
    "department": "IT",
    "salary": 45000
  },
  {
    "id": 18,
    "name": "Menaka KY",
    "age": 25,
    "gender": "female",
    "designation": "Database Administrator",
    "department": "IT",
    "salary": 45000
  },
  {
    "id": 19,
    "name": "Shanvi Harish",
    "age": 23,
    "gender": "female",
    "designation": "UI/UX Designer",
    "department": "Design",
    "salary": 35000
  },
  {
    "id": 20,
    "name": "Tim David",
    "age": 35,
    "gender": "male",
    "designation": "Technical Lead",
    "department": "IT",
    "salary": 55000
  }
	
]

Ecommerce products json sample dataset

Products Json Fields
id
name
description
price
category
image

Sample data is provided below for 20 product records in json format

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
[
  {
    "id": 1,
    "name": "Apple iPhone 12",
    "description": "The Apple iPhone 12 features a 6.1-inch Super Retina XDR display and A14 Bionic chip.",
    "price": 999.00,
    "category": "Electronics",
    "image": "https://www.apple.com/newsroom/images/product/iphone/standard/Apple_iPhone-12_red-product(1)_10132020_big.jpg.large.jpg"
  },
  {
    "id": 2,
    "name": "Samsung Galaxy S21",
    "description": "The Samsung Galaxy S21 features a 6.2-inch Dynamic AMOLED display and Exynos 2100 chip.",
    "price": 799.00,
    "category": "Electronics",
    "image": "https://images.samsung.com/is/image/samsung/p6pim/in/sm-g991bzviinu/gallery/in-galaxy-s21-5g-g991-sm-g991bzviinu-thumb-346754727?$LazyLoad_Home_IMG$"
  },
  {
    "id": 3,
    "name": "Sony PlayStation 5",
    "description": "The Sony PlayStation 5 features an AMD Zen 2-based CPU, AMD RDNA 2-based GPU, and 16GB of GDDR6 memory.",
    "price": 499.99,
    "category": "Electronics",
    "image": "https://www.sony.com/image/44baa604124b770c82401a2dbd78ebaf?fmt=pjpeg&wid=720&bgcolor=F1F5F9&bgc=F1F5F9"
  },
  {
    "id": 4,
    "name": "LG OLED55CXPUA 55-inch 4K OLED TV",
    "description": "The LG OLED55CXPUA 55-inch 4K OLED TV features OLED Display, 4K UHD Resolution, HDR10 Pro, HLG Pro, Dolby Vision IQ, and Dolby Atmos.",
    "price": 1599.99,
    "category": "Electronics",
    "image": "https://www.lg.com/us/images/tvs/md07501804/gallery/desktop-01.jpg"
  },
  {
    "id": 5,
    "name": "Bose QuietComfort 35 II Wireless Headphones",
    "description": "The Bose QuietComfort 35 II Wireless Headphones feature world-class noise cancellation and voice control.",
    "price": 299.00,
    "category": "Electronics",
    "image": "https://assets.bose.com/content/dam/Bose_DAM/Web/consumer_electronics/global/products/headphones/quietcomfort_35_ii_silver/product_silo_images/qc35ii_silver_EC_hero_010719.psd/_jcr_content/renditions/cq5dam.web.720.720.jpeg"
  },
  {
    "id": 6,
    "name": "Fitbit Versa 3 Smartwatch",
    "description": "The Fitbit Versa 3 Smartwatch features a built-in GPS, Active Zone Minutes, and voice assistant.",
    "price": 229.95,
    "category": "Electronics",
    "image": "https://www.fitbit.com/global/content/dam/fitbit/global/pdp/versa-3/hero/PDP-Versa-3-Carbon-Aluminum-Hero.png"
  },
  {
    "id": 7,
    "name": "KitchenAid Stand Mixer",
    "description": "The KitchenAid Stand Mixer features a 5-quart stainless steel bowl, 10-speed settings, and a variety of attachments.",
    "price": 399.99,
    "category": "Home & Kitchen",
    "image": "https://www.kitchenaid.com/content/dam/global/kitchenaid/countertop-appliances/stand-mixers/hero-kitchenaid-stand-mixers-ksm150ps-bw-1600.png"
  },
  {
    "id": 8,
    "name": "Dyson V11 Absolute Cordless Vacuum",
    "description": "The Dyson V11 Absolute Cordless Vacuum features powerful suction and up to 60 minutes of runtime.",
    "price": 699.99,
    "category": "Home Appliances",
    "image": "https://www.dysoncanada.ca/dam/dyson/images/promotions/desktop-promotions/v11-absolute-blue-desktop-3col-242x254.jpg"
  },
  {
    "id": 9,
    "name": "Ninja Foodi Smart XL Grill",
    "description": "The Ninja Foodi Smart XL Grill features 6-in-1 functionality and 4-quart crisper basket.",
    "price": 279.99,
    "category": "Home & Kitchen",
    "image": "https://www.ninjakitchen.com/medias/Ninja-OP500W-Foodi-Smart-XL-6-in-1-Indoor-Grill-with-4-qt-Air-Fryer-and-Dehydrator-2.png?context=bWFzdGVyfGltYWdlc3wyNjAwMDh8aW1hZ2UvcG5nfGltYWdlcy9oMTYvaDIzLzkxNzA0MTU0NTE5MjYucG5nfDM2NzllYjM5YzI5NmMxZWE5ZjQ5ZDY3MTBhMTY4YWE4NTY4YjczOTJmMzkwZGJmYmZiNDEyMTM1YmYwMTg2MzQ"
  },
  {
    "id": 10,
    "name": "Canon EOS Rebel T8i DSLR Camera",
    "description": "The Canon EOS Rebel T8i DSLR Camera features a 24.1-megapixel sensor and DIGIC 8 image processor.",
    "price": 899.00,
    "category": "Electronics",
    "image": "https://www.canon.com.au/-/media/images/products/cameras/dslr/canon-eos-rebel-t8i/canon-eos-rebel-t8i-hero-product-image.jpg"
  },
  {
    "id": 11,
    "name": "Apple AirPods Pro",
    "description": "The Apple AirPods Pro feature active noise cancellation and customizable fit.",
    "price": 249.00,
    "category": "Electronics",
    "image": "https://www.apple.com/v/airpods-pro/b/images/meta/og__amg0zzu6pau6_preview.png"
  },
  {
    "id": 12,
    "name": "Bose QuietComfort 35 II Wireless Headphones",
    "description": "The Bose QuietComfort 35 II Wireless Headphones feature noise cancellation and Alexa voice control.",
    "price": 299.00,
    "category": "Electronics",
    "image": "https://assets.bose.com/content/dam/Bose_DAM/Web/consumer_electronics/global/products/headphones/quietcomfort_35_ii/product_silo_images/qc35_ii_black_EC_hero_010718.psd/_jcr_content/renditions/cq5dam.web.320.320.jpeg"
  },
  {
    "id": 13,
    "name": "Fitbit Charge 4 Fitness Tracker",
    "description": "The Fitbit Charge 4 Fitness Tracker features GPS and Active Zone Minutes.",
    "price": 129.95,
    "category": "Electronics",
    "image": "https://www.fitbit.com/global/content/dam/fitbit/global/pdp/charge-4/hero/PDP-Charge-4-Black-Hero.png"
  },
  {
    "id": 14,
    "name": "Samsung Galaxy Watch3",
    "description": "The Samsung Galaxy Watch3 features a rotating bezel and health tracking.",
    "price": 399.99,
    "category": "Electronics",
    "image": "https://images.samsung.com/is/image/samsung/assets/us/watches/galaxy-watch3/images/gallery/galaxy-watch3-01.png?$720_576_PNG$"
  },
  {
    "id": 15,
    "name": "Sony WH-1000XM4 Wireless Noise-Cancelling Headphones",
    "description": "The Sony WH-1000XM4 Wireless Noise-Cancelling Headphones feature noise cancellation and touch controls.",
    "price": 349.99,
    "category": "Electronics",
    "image": "https://www.sony.com/image/1cdd6354c4cd21cc4f7ec78f9e9ad165?fmt=pjpeg&wid=660&hei=660&bgcolor=F1F5F9&bgc=F1F5F9"
  },
  {
    "id": 16,
    "name": "Breville Barista Express Espresso Machine",
    "description": "The Breville Barista Express Espresso Machine features a built-in conical burr grinder and steam wand.",
    "price": 699.95,
    "category": "Home & Kitchen",
    "image": "https://www.breville.com/content/dam/breville/ca/Images/Products/Espresso/BES870XL/hero.jpg"
  },
  {
    "id": 17,
    "name": "Keurig K-Elite Coffee Maker",
    "description": "The Keurig K-Elite Coffee Maker features a strong brew setting and iced coffee setting.",
    "price": 169.99,
    "category": "Home & Kitchen",
    "image": "https://www.keurig.com/content/dam/global-ecom/landing-pages/k-elite/k-elite-product-page/k-elite-platinum.png"
  },
  {
    "id": 18,
    "name": "iRobot Roomba i7+ Robot Vacuum",
    "description": "The iRobot Roomba i7+ Robot Vacuum features automatic dirt disposal and smart mapping.",
    "price": 799.99,
    "category": "Home & Kitchen",
    "image": "https://store.irobot.com/default/i7-vacuuming-robot/i755020/irobot-roomba-i7-robot-vacuum/1.png"
  },
  {
    "id": 19,
    "name": "Ninja Foodi Digital Air Fry Oven",
    "description": "The Ninja Foodi Digital Air Fry Oven features 8 functions and a 60-second preheat.",
    "price": 209.99,
    "category": "Home & Kitchen",
    "image": "https://www.ninjakitchen.com/static/img/products/cov/ninja-foodi-digital-air-fry-oven-SP101.png"
  },
  {
    "id": 20,
    "name": "Cuisinart ICE-70 Ice Cream Maker",
    "description": "The Cuisinart ICE-70 Ice Cream Maker features a 2-quart capacity and 3 settings.",
    "price": 139.99,
    "category": "Home & Kitchen",
    "image": "https://www.cuisinart.com/share/images/products/large/ICE-70.png"
  }
]

Weather json sample dataset

Weather Json Fields
date
location
temperature
humidity
description

Sample data is provided below for 20 weather records in json format

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[
  {
    "date": "2022-03-25",
    "location": "New York",
    "temperature": 47.2,
    "humidity": 62,
    "description": "Partly cloudy"
  },
  {
    "date": "2022-03-25",
    "location": "Los Angeles",
    "temperature": 72.5,
    "humidity": 45,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "Chicago",
    "temperature": 35.8,
    "humidity": 75,
    "description": "Rain"
  },
  {
    "date": "2022-03-25",
    "location": "Houston",
    "temperature": 67.1,
    "humidity": 64,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "Miami",
    "temperature": 81.3,
    "humidity": 55,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "London",
    "temperature": 44.8,
    "humidity": 78,
    "description": "Overcast"
  },
  {
    "date": "2022-03-25",
    "location": "Paris",
    "temperature": 46.1,
    "humidity": 67,
    "description": "Rain"
  },
  {
    "date": "2022-03-25",
    "location": "Tokyo",
    "temperature": 59.3,
    "humidity": 60,
    "description": "Cloudy"
  },
  {
    "date": "2022-03-25",
    "location": "Sydney",
    "temperature": 72.8,
    "humidity": 58,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "Mumbai",
    "temperature": 88.2,
    "humidity": 34,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "Toronto",
    "temperature": 40.6,
    "humidity": 81,
    "description": "Snow"
  },
  {
    "date": "2022-03-25",
    "location": "Berlin",
    "temperature": 38.9,
    "humidity": 70,
    "description": "Rain"
  },
  {
    "date": "2022-03-25",
    "location": "Madrid",
    "temperature": 55.6,
    "humidity": 48,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "Dubai",
    "temperature": 94.1,
    "humidity": 20,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "Moscow",
    "temperature": 29.5,
    "humidity": 83,
    "description": "Snow"
  },
  {
    "date": "2022-03-25",
    "location": "Seoul",
    "temperature": 45.6,
    "humidity": 62,
    "description": "Cloudy"
  },
  {
    "date": "2022-03-25",
    "location": "Rio de Janeiro",
    "temperature": 81.7,
    "humidity": 74,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "Beijing",
    "temperature": 56.9,
    "humidity": 48,
    "description": "Partly cloudy"
  },
  {
    "date": "2022-03-25",
    "location": "Cairo",
    "temperature": 80.5,
    "humidity": 25,
    "description": "Sunny"
  },
  {
    "date": "2022-03-25",
    "location": "Mexico City",
    "temperature": 72.4,
    "humidity": 58,
    "description": "Rain"
  }
  ]

Social Media json sample dataset

Social Media Json Fields
post_id
author
timestamp
content
comments

Sample data is provided below for 10 social media records in json format

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[
    {
    "post_id": "1",
    "author": "User1",
    "timestamp": "2023-09-03 10:00:00",
    "content": "Just visited a beautiful park today! #NatureLover #WeekendVibes",
    "likes": 150,
    "comments": [
        {
        "comment_id": "101",
        "commenter": "User2",
        "comment_text": "Wow! That park looks amazing. 😍"
        },
        {
        "comment_id": "102",
        "commenter": "User3",
        "comment_text": "I wish I could go there too! 🌳"
        }
    ],
    "shares": 25,
    "location": "City Park"
    },
    {
    "post_id": "2",
    "author": "User4",
    "timestamp": "2023-09-03 12:30:00",
    "content": "Sunday brunch with friends! 🍳🥂",
    "likes": 98,
    "comments": [
        {
        "comment_id": "103",
        "commenter": "User5",
        "comment_text": "The food looks delicious! 😋"
        },
        {
        "comment_id": "104",
        "commenter": "User6",
        "comment_text": "Count me in next time! 🙌"
        }
    ],
    "shares": 10,
    "location": "Cafe XYZ"
    },
    {
    "post_id": "3",
    "author": "User7",
    "timestamp": "2023-09-02 18:45:00",
    "content": "Movie night with popcorn and friends! 🎥🍿",
    "likes": 120,
    "comments": [],
    "shares": 15,
    "location": "Home"
    },
    {
    "post_id": "4",
    "author": "User8",
    "timestamp": "2023-09-02 09:15:00",
    "content": "Morning jog to kickstart the day! 🏃‍♂️💪",
    "likes": 175,
    "comments": [
        {
        "comment_id": "105",
        "commenter": "User9",
        "comment_text": "Healthy start! 👏"
        }
    ],
    "shares": 30,
    "location": "Local Park"
    },
    {
    "post_id": "5",
    "author": "User10",
    "timestamp": "2023-09-01 16:20:00",
    "content": "Exploring new places in the city! 🏙️ #AdventureTime",
    "likes": 220,
    "comments": [],
    "shares": 40,
    "location": "Downtown"
    },
    {
    "post_id": "6",
    "author": "User11",
    "timestamp": "2023-09-01 09:00:00",
    "content": "Coffee and coding session. ☕💻",
    "likes": 75,
    "comments": [],
    "shares": 5,
    "location": "Cafe TechHub"
    },
    {
    "post_id": "7",
    "author": "User12",
    "timestamp": "2023-08-31 20:15:00",
    "content": "Gorgeous sunset at the beach today! 🌅 #NatureBeauty",
    "likes": 320,
    "comments": [
        {
        "comment_id": "106",
        "commenter": "User13",
        "comment_text": "Sunsets are my favorite! ❤️"
        }
    ],
    "shares": 55,
    "location": "Beachfront"
    },
    {
    "post_id": "8",
    "author": "User14",
    "timestamp": "2023-08-31 14:45:00",
    "content": "Attending a fantastic conference. Learning a lot! 📚👨‍🏫",
    "likes": 150,
    "comments": [
        {
        "comment_id": "107",
        "commenter": "User15",
        "comment_text": "Which conference is it? I want to join next time!"
        }
    ],
    "shares": 12,
    "location": "Conference Center"
    },
    {
    "post_id": "9",
    "author": "User16",
    "timestamp": "2023-08-30 11:30:00",
    "content": "Cooking up a storm in the kitchen! 🍳🔥",
    "likes": 85,
    "comments": [
        {
        "comment_id": "108",
        "commenter": "User17",
        "comment_text": "I hope there's something left for me!"
        }
    ],
    "shares": 8,
    "location": "Home Kitchen"
    },
    {
    "post_id": "10",
    "author": "User18",
    "timestamp": "2023-08-30 08:00:00",
    "content": "Early morning hike to catch the sunrise! 🌄 #HikingAdventures",
    "likes": 210,
    "comments": [],
    "shares": 25,
    "location": "Mountain Trail"
    }
]

Movie json sample dataset

Movie Json Fields
movie_id
title
director
release_date
genre
runtime_minutes
rating
description
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
[
  {
    "movie_id": "1",
    "title": "The Shawshank Redemption",
    "director": "Frank Darabont",
    "release_date": "1994-09-23",
    "genre": ["Drama", "Crime"],
    "runtime_minutes": 142,
    "rating": 9.3,
    "description": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency."
  },
  {
    "movie_id": "2",
    "title": "The Godfather",
    "director": "Francis Ford Coppola",
    "release_date": "1972-03-24",
    "genre": ["Crime", "Drama"],
    "runtime_minutes": 175,
    "rating": 9.2,
    "description": "The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son."
  },
  {
    "movie_id": "3",
    "title": "Pulp Fiction",
    "director": "Quentin Tarantino",
    "release_date": "1994-10-14",
    "genre": ["Crime", "Drama"],
    "runtime_minutes": 154,
    "rating": 8.9,
    "description": "The lives of two mob hitmen, a boxer, a gangster's wife, and a pair of diner bandits intertwine in four tales of violence and redemption."
  },
  {
    "movie_id": "4",
    "title": "The Dark Knight",
    "director": "Christopher Nolan",
    "release_date": "2008-07-18",
    "genre": ["Action", "Crime", "Drama"],
    "runtime_minutes": 152,
    "rating": 9.0,
    "description": "When the menace known as The Joker emerges from his mysterious past, he wreaks havoc and chaos on the people of Gotham."
  },
  {
    "movie_id": "5",
    "title": "Schindler's List",
    "director": "Steven Spielberg",
    "release_date": "1993-12-15",
    "genre": ["Biography", "Drama", "History"],
    "runtime_minutes": 195,
    "rating": 8.9,
    "description": "In German-occupied Poland during World War II, Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis."
  },
  {
    "movie_id": "6",
    "title": "Forrest Gump",
    "director": "Robert Zemeckis",
    "release_date": "1994-07-06",
    "genre": ["Drama", "Romance"],
    "runtime_minutes": 142,
    "rating": 8.8,
    "description": "The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal, and other historical events unfold through the perspective of an Alabama man with an IQ of 75."
  },
  {
    "movie_id": "7",
    "title": "Inception",
    "director": "Christopher Nolan",
    "release_date": "2010-07-16",
    "genre": ["Action", "Adventure", "Sci-Fi"],
    "runtime_minutes": 148,
    "rating": 8.8,
    "description": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O."
  },
  {
    "movie_id": "8",
    "title": "Fight Club",
    "director": "David Fincher",
    "release_date": "1999-10-15",
    "genre": ["Drama"],
    "runtime_minutes": 139,
    "rating": 8.8,
    "description": "An insomniac office worker and a devil-may-care soapmaker form an underground fight club that evolves into something much, much more."
  },
  {
    "movie_id": "9",
    "title": "The Matrix",
    "director": "Lana Wachowski, Lilly Wachowski",
    "release_date": "1999-03-31",
    "genre": ["Action", "Sci-Fi"],
    "runtime_minutes": 136,
    "rating": 8.7,
    "description": "A computer programmer discovers that reality as he knows it is a simulation created by machines to subjugate humanity."
  },
  {
    "movie_id": "10",
    "title": "The Lord of the Rings: The Fellowship of the Ring",
    "director": "Peter Jackson",
    "release_date": "2001-12-19",
    "genre": ["Action", "Adventure", "Drama"],
    "runtime_minutes": 178,
    "rating": 8.8,
    "description": "A young hobbit, Frodo, who has found the One Ring, embarks on a perilous journey to destroy it and save Middle-earth."
  }
]

Restaurant json sample dataset

Restaurant Json Fields
item_id
category
description
price
vegetarian
gluten_free
ingredients
available
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"menu": [
    {
    "item_id": "1",
    "item_name": "Margherita Pizza",
    "category": "Pizza",
    "description": "Classic pizza with tomato, mozzarella, and basil",
    "price": 12.99,
    "spiciness_level": "Mild",
    "vegetarian": true,
    "gluten_free": false,
    "ingredients": ["Tomato Sauce", "Mozzarella Cheese", "Fresh Basil"],
    "available": true
    },
    {
    "item_id": "2",
    "item_name": "Chicken Alfredo",
    "category": "Pasta",
    "description": "Creamy Alfredo pasta with grilled chicken",
    "price": 15.99,
    "spiciness_level": "Mild",
    "vegetarian": false,
    "gluten_free": false,
    "ingredients": ["Fettuccine Pasta", "Alfredo Sauce", "Grilled Chicken"],
    "available": true
    },
    {
    "item_id": "3",
    "item_name": "Caesar Salad",
    "category": "Salad",
    "description": "Fresh romaine lettuce with Caesar dressing and croutons",
    "price": 8.99,
    "spiciness_level": "Mild",
    "vegetarian": true,
    "gluten_free": false,
    "ingredients": ["Romaine Lettuce", "Caesar Dressing", "Croutons"],
    "available": true
    },
    {
    "item_id": "4",
    "item_name": "Grilled Salmon",
    "category": "Seafood",
    "description": "Grilled salmon fillet with lemon and herbs",
    "price": 17.99,
    "spiciness_level": "Mild",
    "vegetarian": false,
    "gluten_free": true,
    "ingredients": ["Salmon Fillet", "Lemon", "Herbs"],
    "available": true
    },
    {
    "item_id": "5",
    "item_name": "Vegetable Stir-Fry",
    "category": "Vegetarian",
    "description": "Assorted vegetables stir-fried in a savory sauce",
    "price": 11.99,
    "spiciness_level": "Medium",
    "vegetarian": true,
    "gluten_free": true,
    "ingredients": ["Assorted Vegetables", "Stir-Fry Sauce"],
    "available": true
    },
    {
    "item_id": "6",
    "item_name": "Hamburger",
    "category": "Burger",
    "description": "Classic hamburger with lettuce, tomato, and cheese",
    "price": 9.99,
    "spiciness_level": "Mild",
    "vegetarian": false,
    "gluten_free": false,
    "ingredients": ["Beef Patty", "Lettuce", "Tomato", "Cheese"],
    "available": true
    },
    {
    "item_id": "7",
    "item_name": "Chocolate Brownie",
    "category": "Dessert",
    "description": "Warm chocolate brownie with vanilla ice cream",
    "price": 6.99,
    "spiciness_level": "Mild",
    "vegetarian": true,
    "gluten_free": false,
    "ingredients": ["Chocolate Brownie", "Vanilla Ice Cream"],
    "available": true
    },
    {
    "item_id": "8",
    "item_name": "Mango Smoothie",
    "category": "Beverage",
    "description": "Refreshing mango smoothie",
    "price": 4.99,
    "spiciness_level": "Non-Spicy",
    "vegetarian": true,
    "gluten_free": true,
    "ingredients": ["Mango", "Yogurt", "Honey"],
    "available": true
    },
    {
    "item_id": "9",
    "item_name": "Chicken Tenders",
    "category": "Appetizer",
    "description": "Crispy chicken tenders with dipping sauce",
    "price": 8.99,
    "spiciness_level": "Mild",
    "vegetarian": false,
    "gluten_free": false,
    "ingredients": ["Chicken Tenders", "Dipping Sauce"],
    "available": true
    },
    {
    "item_id": "10",
    "item_name": "Sushi Combo",
    "category": "Sushi",
    "description": "Assorted sushi rolls with wasabi and soy sauce",
    "price": 18.99,
    "spiciness_level": "Non-Spicy",
    "vegetarian": false,
    "gluten_free": false,
    "ingredients": ["Assorted Sushi Rolls", "Wasabi", "Soy Sauce"],
    "available": true
    }
]
}