fireboxToolsGive Feedback

Explore Sample JSON Data: Discover Formatted, Interactive, and Useful JSON Examples

Welcome to our Sample JSON (Javascript Object Notation) data page, where you can explore a wide variety of sample JSON to enhance your understanding and improve your programming skills. We offer a range of valuable resources, including Formatted JSON, and Interactive JSON to cater to your specific needs

JSON Examples: Users, Products, Days, Weeks, Months etc

Are you looking for JSON examples? Users, Products, Days, Weeks, and Months are among the many items in our collection. These examples will help you grasp the structure of JSON for various data kinds. They are user-friendly and precise, have been validated, and may be used as a reference. Explore our JSON data samples.

Sample JSON for Weekdays

1{
2	"days": [
3		"Monday",
4		"Tuesday",
5		"Wednesday",
6		"Thursday",
7		"Friday",
8		"Saturday",
9		"Sunday"
10	]
11}

JSON Examples for Months

1{
2	"months": [
3		"January",
4		"February",
5		"March",
6		"April",
7		"May",
8		"June",
9		"July",
10		"August",
11		"September",
12		"October",
13		"November",
14		"December"
15	]
16}

Example of a Simple JSON Object Representing User Information

1{
2	"user_id": "123456",
3	"username": "example_user",
4	"first_name": "John",
5	"last_name": "Doe",
6	"gender": "m",
7	"email": "johndoe@fireboxtools.com",
8	"age": 30,
9	"is_active": true,
10	"registration_date": "2023-01-15",
11	"address": {
12		"street": "123 Main Street",
13		"city": "Exampleville",
14		"state": "CA",
15		"postal_code": "12345",
16		"country": "USA"
17	},
18	"interests": [
19		"reading",
20		"hiking",
21		"cooking",
22		"swimming",
23		"music"
24	],
25	"preferences": {
26		"theme": "dark",
27		"notifications": {
28			"email": true,
29			"push": false
30		}
31	}
32}

Example of a Simple JSON Object Representing Product Information

1{
2	"product_id": "SKU12345",
3	"name": "Example Product",
4	"description": "This is an example product.",
5	"category": "Electronics",
6	"price": 199.99,
7	"stock_quantity": 50,
8	"manufacturer": "TechCo",
9	"release_date": "2022-05-10",
10	"is_available": true,
11	"ratings": {
12		"average": 4.5,
13		"total": 100
14	},
15	"reviews": [
16		{
17			"user": "user123",
18			"rating": 5,
19			"review_text": "Great product, highly recommended!"
20		},
21		{
22			"user": "user456",
23			"rating": 4,
24			"review_text": "Good value for the price."
25		},
26		{
27			"user": "user450",
28			"rating": 4,
29			"review_text": "Good value for the price."
30		}
31	]
32}

JSON example for Employee Information

1{
2	"employees": [
3		{
4			"employee_id": "E12345",
5			"first_name": "Alice",
6			"last_name": "Johnson",
7			"email": "alice.johnson@example.com",
8			"position": "Software Engineer",
9			"department": "Engineering",
10			"salary": 85000,
11			"hire_date": "2020-03-15",
12			"skills": [
13				"Java",
14				"Python",
15				"JavaScript"
16			],
17			"projects": [
18				"E-commerce Platform",
19				"Mobile App Development"
20			],
21			"manager": "John Smith"
22		},
23		{
24			"employee_id": "E67890",
25			"first_name": "Bob",
26			"last_name": "Smith",
27			"email": "bob.smith@example.com",
28			"position": "Marketing Specialist",
29			"department": "Marketing",
30			"salary": 60000,
31			"hire_date": "2019-07-10",
32			"skills": [
33				"Market Research",
34				"Social Media Management"
35			],
36			"campaigns": [
37				"Product Launch",
38				"Seasonal Promotions"
39			],
40			"manager": "Sarah Johnson",
41			"responsibilities": [
42				"Talent Acquisition"
43			]
44		}
45	]
46}

Example With Two Employer Objects in a JSON Array

1{
2	"employers": [
3		{
4			"employer_id": "EMP5678",
5			"company_name": "TechCo Enterprises",
6			"industry": "Information Technology",
7			"location": "Silicon Valley, CA",
8			"contact_email": "contact@techco.com",
9			"website": "https://www.techco.com",
10			"employees_count": 500,
11			"founded_year": 2005,
12			"is_hiring": true,
13			"departments": [
14				"Engineering",
15				"Marketing",
16				"Human Resources",
17				"Finance"
18			],
19			"key_products": [
20				"Software Solutions",
21				"Hardware Devices",
22				"Digital Services"
23			]
24		},
25		{
26			"employer_id": "EMP1234",
27			"company_name": "Global Innovators",
28			"industry": "Research and Development",
29			"location": "New York, NY",
30			"contact_email": "info@globalinnovators.com",
31			"website": "https://www.globalinnovators.com",
32			"employees_count": 300,
33			"founded_year": 2010,
34			"is_hiring": false,
35			"departments": [
36				"Research",
37				"Engineering",
38				"Marketing"
39			],
40			"key_products": [
41				"Cutting-edge Technologies",
42				"Scientific Discoveries"
43			]
44		}
45	]
46}

Sample JSON data representing comments on a blog post

1{
2	"blog_post_id": 69,
3	"comments": [
4		{
5			"comment_id": 1,
6			"user_id": 456,
7			"username": "User1",
8			"comment_text": "I just wanted to thank you for giving sample JSON data on your website.",
9			"timestamp": "2023-09-04T10:30:00Z"
10		},
11		{
12			"comment_id": 2,
13			"user_id": 789,
14			"username": "User2",
15			"comment_text": "I appreciate your efforts in choosing and maintaining this data collection.",
16			"timestamp": "2023-09-04T11:15:00Z"
17		}
18	]
19}

Your Feedback Matters