Sample Json Data

Example

{
    "movieName": "Avengers: Endgame",
    "storyLine" : "The Avengers come together once again with the assistance of remaining allies in order to reverse Thanos' actions and restore balance to the universe.",
    "tagLine" : "Avenge the fallen",
    "releaseYear": 2019,
    "imdbRating" : "8.4"
} 

Example

{
    "id":"E23",
    "jobTitle":"Developer",
    "firstName": "John",
    "lastName": "Smith",
    "gender": "male",
    "age": 27,
    "address": {
        "streetAddress": "13085",
        "city": "Atlanta",
        "state": "GA",
        "postal": 30004
    },
    "contact": [
        { 
            "type": "mobile",
            "number": 9123456789,
            "emailAddress":"John@gmail.com" }
    ]
} 

Example

[
    {
        "position": 1,
        "countryName": "Russia",
        "TotalAreaMiles": 6601665
    },
    {
        "position": 2,
        "countryName": "Canada",
        "TotalAreaMiles": 3855101
    },{
        "position": 3,
        "countryName": "China",
        "TotalAreaMiles": 3747877
    },
    {
        "position": 4,
        "countryName": "United States",
        "TotalAreaMiles": 3618783
    },
    {
        "position": 5,
        "countryName": "Brazil",
        "TotalAreaMiles": 3287955
    },
    {
        "position": 6,
        "countryName": "Australia",
        "TotalAreaMiles": 2969906
    },
    {
        "position": 7,
        "countryName": "India",
        "TotalAreaMiles": 1269345
    }
] 

Example

{
    "categories": [
      {
        "id": 1,
        "name": "Electronics",
        "products": [
          {
            "id": 1,
            "name": "iPhone 12",
            "brand": "Apple",
            "price": 999.99,
            "variations": [
              {
                "id": 1,
                "color": "Space Gray",
                "storage": "64GB"
              },
              {
                "id": 2,
                "color": "Silver",
                "storage": "128GB"
              }
            ]
          },
          {
            "id": 2,
            "name": "Samsung Galaxy S21",
            "brand": "Samsung",
            "price": 899.99,
            "variations": [
              {
                "id": 3,
                "color": "Phantom Black",
                "storage": "128GB"
              },
              {
                "id": 4,
                "color": "Phantom Silver",
                "storage": "256GB"
              }
            ]
          }
        ]
      },
      {
        "id": 2,
        "name": "Books",
        "products": [
          {
            "id": 3,
            "name": "To Kill a Mockingbird",
            "author": "Harper Lee",
            "price": 12.99,
            "variations": [
              {
                "id": 5,
                "format": "Paperback"
              },
              {
                "id": 6,
                "format": "Hardcover"
              }
            ]
          },
          {
            "id": 4,
            "name": "1984",
            "author": "George Orwell",
            "price": 10.99,
            "variations": [
              {
                "id": 7,
                "format": "Paperback"
              },
              {
                "id": 8,
                "format": "E-book"
              }
            ]
          }
        ]
      }
    ]
  } 

Example

{
    "id": 1,
    "name": "Company XYZ",
    "address": {
      "street": "123 Main St",
      "city": "New York",
      "state": "NY",
      "postalCode": "10001"
    },
    "employees": [
      {
        "id": 1,
        "name": "John Doe",
        "position": "Software Engineer",
        "skills": ["Java", "JavaScript", "Python"],
        "projects": [
          {
            "id": 1,
            "name": "Project A",
            "description": "Developing a web application",
            "status": "In Progress"
          },
          {
            "id": 2,
            "name": "Project B",
            "description": "Building a mobile app",
            "status": "Completed"
          }
        ]
      },
      {
        "id": 2,
        "name": "Jane Smith",
        "position": "UI/UX Designer",
        "skills": ["Photoshop", "Illustrator", "Sketch"],
        "projects": [
          {
            "id": 3,
            "name": "Project C",
            "description": "Designing user interfaces",
            "status": "In Progress"
          }
        ]
      }
    ],
    "departments": [
      {
        "id": 1,
        "name": "Engineering",
        "manager": "Alice Johnson",
        "employees": ["John Doe", "Jane Smith"]
      },
      {
        "id": 2,
        "name": "Design",
        "manager": "Michael Brown",
        "employees": []
      }
    ]
  } 

Example

{
    "id": 1,
    "title": "My Blog Post",
    "author": {
      "id": 101,
      "name": "John Doe",
      "email": "johndoe@example.com"
    },
    "date": "2023-05-30",
    "content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla accumsan dolor sed arcu tristique tempus. Donec eget sapien et augue efficitur tempor at ac libero. Integer condimentum, elit ut rutrum convallis, metus neque auctor nunc, nec maximus arcu dolor ut elit. Sed interdum pellentesque neque, id ullamcorper libero tempor vel. Suspendisse potenti.",
    "tags": ["programming", "web development", "javascript"],
    "comments": [
      {
        "id": 1,
        "author": {
          "id": 201,
          "name": "Jane Smith",
          "email": "janesmith@example.com"
        },
        "text": "Great post!"
      },
      {
        "id": 2,
        "author": {
          "id": 202,
          "name": "Bob Johnson",
          "email": "bobjohnson@example.com"
        },
        "text": "I learned a lot from this article. Thanks!"
      }
    ]
  } 

Example

{
    "id": 1,
    "name": "Company XYZ",
    "address": {
      "street": "123 Main St",
      "city": "New York",
      "state": "NY",
      "postalCode": "10001"
    },
    "employees": [
      {
        "id": 1,
        "name": "John Doe",
        "position": "Manager",
        "department": "Operations"
      },
      {
        "id": 2,
        "name": "Jane Smith",
        "position": "Engineer",
        "department": "Development"
      },
      {
        "id": 3,
        "name": "Mark Johnson",
        "position": "Designer",
        "department": "Design"
      }
    ],
    "products": [
      {
        "id": 1,
        "name": "Product A",
        "price": 9.99,
        "quantity": 100
      },
      {
        "id": 2,
        "name": "Product B",
        "price": 19.99,
        "quantity": 50
      },
      {
        "id": 3,
        "name": "Product C",
        "price": 14.99,
        "quantity": 75
      }
    ],
    "orders": [
      {
        "id": 1,
        "orderNumber": "ORD001",
        "customer": "John Doe",
        "items": [
          {
            "productId": 1,
            "quantity": 5
          },
          {
            "productId": 2,
            "quantity": 2
          }
        ]
      },
      {
        "id": 2,
        "orderNumber": "ORD002",
        "customer": "Jane Smith",
        "items": [
          {
            "productId": 1,
            "quantity": 3
          },
          {
            "productId": 3,
            "quantity": 1
          }
        ]
      }
    ]
  }  
Try JSON Validator