JSON Sample Data Files: Copy, Download, and Use

JSON stands for JavaScript Object Notation. JSON is an open file format and data interchange format that can be used to store and transmit data. JSON file stores data in the format of arrays of key: value pairs.

Here, we have some of the sample JSON data files (examples), that you can use for your projects. Go through the sample data – Copy, Download as a file, and use it in your projects.

1. Sample JSON Employees Data File (employees.json)

{
  "Employees": [
    {
      "empId": "EMP01",
      "jobTitle": "Developer",
      "firstName": "Shivang",
      "lastName": "Yadav",
      "fullName": "Shivang Yadav",
      "address": "Indore, MP, India",
      "contact": "+91-9999999999",
      "email": "[email protected]"
    },
    {
      "empId": "EMP02",
      "jobTitle": "Jr. Developer",
      "firstName": "Alvin",
      "lastName": "Alexander",
      "fullName": "Alvin Alexander",
      "address": "New Delhi, India",
      "contact": "+91-9999999999",
      "email": "[email protected]"
    },
    {
      "empId": "EMP03",
      "jobTitle": "Manager",
      "firstName": "Kuldeep",
      "lastName": "Tak",
      "fullName": "Kuldeep Tak",
      "address": "Mumbai, India",
      "contact": "+91-9999999999",
      "email": "[email protected]"
    }
  ]
}

Download 💌

2. Sample JSON Students Data File (students.json)

{
  "students": [
    {
      "id": "001",
      "firstName": "Bhavik",
      "lastName": "Taneja",
      "fullName": "Bhavik Taneja",
      "fatherName": "Mr. Dinesh Taneja",
      "grades": [
        2.3,
        4.3,
        5
      ],
      "age": 15,
      "class": "10"
    },
    {
      "id": "002",
      "firstName": "Bharat",
      "lastName": "Badera",
      "fullName": "Bharat Badera",
      "fatherName": "Mr. RadheShyam Badera",
      "grades": [
        2.1,
        4.6,
        5
      ],
      "age": 14,
      "class": "9"
    },
    {
      "id": "003",
      "firstName": "Arvind",
      "lastName": "Gaur",
      "fullName": "Arvind Gaur",
      "fatherName": "Mr. L. S. Gaur",
      "grades": [
        2.5,
        3.3,
        4
      ],
      "age": 18,
      "class": "12"
    },
    {
      "id": "002",
      "firstName": "Amit",
      "lastName": "Tek",
      "fullName": "Amit Tek",
      "fatherName": "Mr. A.K. Tek",
      "grades": [
        2,
        4,
        4
      ],
      "age": 18,
      "class": "12"
    }
  ]
}

Download 💌

3. Sample JSON Products Data File (products.json)

{
  "products": [
    {
      "productID": "0000001",
      "manufacturer": "Zara",
      "img": "https://static.zara.net/photos///2023/I/0/2/p/5320/355/800/2/w/563/5320355800_1_1_1.jpg?ts=1697787915583",
      "Url": "https://www.zara.com/in/en/man-outerwear-l715.html",
      "productName": "PINSTRIPE COAT",
      "Description": "Oversize-fit coat made of a viscose blend fabric. Notch lapel collar and long sleeves with buttoned cuffs.",
      "price": 4900,
      "category": "Men Cloths"
    },
    {
      "productID": "0000002",
      "manufacturer": "Zara",
      "img": "https://static.zara.net/photos///2023/I/0/2/p/7380/687/711/2/w/563/7380687711_1_1_1.jpg?ts=1694174968069",
      "Url": "https://www.zara.com/in/en/oversized-technical-trench-coat-p07380687.html",
      "productName": "OVERSIZED TECHNICAL TRENCH COAT",
      "Description": "Trench coat made of technical fabric with a velvety finish. Notch lapel collar and long sleeves.",
      "price": 4900,
      "category": "Men Cloths"
    },
    {
      "productID": "0000003",
      "manufacturer": "Zara",
      "img": "https://static.zara.net/photos///2023/I/0/2/p/3918/611/508/2/w/563/3918611508_1_1_1.jpg?ts=1696405613738",
      "Url": "https://www.zara.com/in/en/padded-technical-parka-p03918611.html",
      "productName": "PADDED TECHNICAL PARKA",
      "Description": "Parka made of technical fabric, padded on inside. High neck with a hood and long sleeves with elasticated cuffs.",
      "price": 5900,
      "category": "Perfumes"
    },
    {
      "productID": "0000004",
      "manufacturer": "Zara",
      "img": "https://static.zara.net/photos///2022/I/2/2/p/0210/585/999/2/w/563/0210585999_6_1_1.jpg?ts=1663836779877",
      "Url": "https://www.zara.com/in/en/bogoss-vibrant-leather-100-ml---3-38%C2%A0oz-p20210585.html",
      "productName": "BOGOSS VIBRANT LEATHER 100 ML / 3.38 OZ",
      "Description": "The first Vibrant Leather for le benjamin with its fruity hint of pineapple that gives it modernity, accompanied by cedar notes, adding a woody touch of rejuvenation.",
      "price": 1900,
      "category": "Perfumes"
    },
    {
      "productID": "0000005",
      "manufacturer": "Zara",
      "img": "https://static.zara.net/photos///2023/I/1/2/p/3213/220/203/2/w/563/3213220203_2_1_1.jpg?ts=1687421823150",
      "Url": "https://www.zara.com/in/en/multicoloured-nylon-backpack-p13213220.html",
      "productName": "MULTICOLOURED NYLON BACKPACK",
      "Description": "Multicoloured backpack. Soft construction. Featuring one main zip pocket and a medium-sized zip pocket on the inside.",
      "price": 2490,
      "category": "Bags"
    }
  ]
}

Download 💌

Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.