JavaScript Object Notation (JSON)

Return to Glossary

JavaScript Object Notation (JSON) is an open standard data exchange format based on a JavaScript syntax subset. JSON is text-based, lightweight, and generally considered easily readable/writeable.

Although closely connected to JavaScript, JSON is language-independent. Though independent, JSON uses conventions similar to other languages (e.g., C, C++, Java, Perl and Python), making JSON an ideal data-exchange language.

JSON characteristics include the following:

Commonly utilized in Web application development, JSON may be used as a data format for any application where information is stored as text.

Source: JavaScript Object Notation (JSON)