JSON Data Type

JSON Data Types:

 

JSON supports string, number, object, array, boolean, null Data types. Data types have different characteristics, style to add value.

  • string

{ “name” : “Denu” }

  • number

{ “contact” : 123456789 }

  • object (JSON object)

{ “address” : { “streetAddress”: “126”, “city”: “San Jone”, “state”: “CA” } }

  • array

{ “pets”: [“Dog”, “cat”] }

  • boolean

{ “boolean” : true }

  • null

{ “Abc” : null }

 

Check out more info on json.org.

Checkout below Post of JSON File.