Categories: Json

Json Structure

Java Script Object Notation (JSON) is one of the most popular and commonly used way to represent information. This post explains simple & complex constructions of JSON message structures.

Let’s take an example of a Car. Information about a Car can be represented in Json format as follows:

var car = {
       "name"  : "Audi",
       "model" : "2010",
       "cost"  : "30000"
};

Above representation is derived from Javascript. Here we have created a variable ‘car’ whose value is an object enclosed within curly braces. This object contains "name":"value" pairs, separated by comma.

To access the object property, we can simply use object.property notation:

car.name                     //produces "Audi"
car.model                    //produces "2010"

Now the object can be complex. For instance, below is an example of nested objects

var car = {
       "name"  : "Audi",
       "model" : "2010",
       "cost"  : "30000",
       "engine": {
          "type" : "diesel",
          "power" : "88KW 2.0TDI"
       }
};

To access the object properties:

car.name                     //produces "Audi"
car.engine.type              //produces "diesel"

JSON does support collection representations. For instance, below is an example of storing JSON in Arrays

var carFleet = [
 {
       "name"  : "Audi",
       "model" : "2010",
       "cost"  : "30000",
       "engine": {
          "type" : "diesel",
          "power" : "88KW 2.0TDI"
       }
},
 {
       "name"  : "Jaguar",
       "model" : "2012",
       "cost"  : "70000",
       "engine": {
          "type" : "diesel",
          "power" : "140KW 3.0TDI"
       }
}
];

In order to access the object properties, use [] (index starts with 0):

carFleet[0].name              //produces "Audi"
carFleet[1].engine.power      //produces "140KW 3.0TDI"

Even more complex information can be represented using JSON:

var carFleet = [
    {
        "name": "Audi",
        "model": "2010",
        "cost": "30000",
        "engine": {
            "type": "diesel",
            "power": "88KW 2.0TDI"
        },
        "colors": [
            "Black",
            "Red",
            "White"
        ]
    },
    {
        "name": "Jaguar",
        "model": "2012",
        "cost": "70000",
        "engine": {
            "type": "diesel",
            "power": "140KW 3.0TDI"
        },
        "colors": [
            "Gray",
            "Black",
            "White"
        ]
    }
];

Again, we can access the individual value using object.property notation, in conjunction with [] for arrays.

carFleet[0].name              //produces "Audi"
carFleet[1].engine.power      //produces "140KW 3.0TDI"
carFleet[1].colors[2]         //produces "White"

TIP:

You can validate the correctness of your JSON on http://jsonlint.com/

That’s it. In the next post we will learn about how to use JSON in your projects.

References

Share
Published by

Recent Posts

Spring Boot + AngularJS + Spring Data + JPA CRUD App Example

In this post we will be developing a full-blown CRUD application using Spring Boot, AngularJS, Spring Data, JPA/Hibernate and MySQL,…

7 years ago

Spring Boot Rest API Example

Spring Boot complements Spring REST support by providing default dependencies/converters out of the box. Writing RESTful services in Spring Boot…

7 years ago

Spring Boot WAR deployment example

Being able to start the application as standalone jar is great, but sometimes it might not be possible to run…

7 years ago

Spring Boot Introduction + hello world example

Spring framework has taken the software development industry by storm. Dependency Injection, rock solid MVC framework, Transaction management, messaging support,…

7 years ago

Secure Spring REST API using OAuth2

Let's secure our Spring REST API using OAuth2 this time, a simple guide showing what is required to secure a…

8 years ago

AngularJS+Spring Security using Basic Authentication

This post shows how an AngularJS application can consume a REST API which is secured with Basic authentication using Spring…

8 years ago