LoginSignup
0
0

More than 5 years have passed since last update.

What is a JSON file ?

Last updated at Posted at 2018-11-17

A JSON(JavaScript Object Notation) File is a file containing JSON object and JSON Array. JSON file is mainly used for exchange data from the server to web Application or Mobile Application. it is a stander Data exchange format. JSON files are very lightweight, text-based, human-readable, easily editable with any text editor.

You can refer below files. This file contains that JSON object.
{
"firstName": "Rajesh",
"lastName": "Kumar",
"gender": "man",
"age": 24,
"address": {
"streetAddress": "126 Udhna",
"city": "Surat",
"state": "GJ",
"postalCode": "394221"
},
"phoneNumbers": [
{ "type": "home", "number": "7383627627" }
]
}

You can also call sample-json API directly.

www.learningcontainer.com

Refer for more information on Json and other technology.

You can compare JSON file, data and URL on

its best tool for comparing with details.

This is also Good Tool for Diff check in Json Data.

You can format your JSON file and URL and Data directly on

http://jsonbeautifier.org
http://jsonparser.org/
– it is very powerful and easy tool for view JSON data.

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0