Javascript Object Notation - Tabular Data
overview
JSON
is an ascii text based representation of data that is used by Javascript to save data as text. Tabular data in
Javascript is typically represented as an array of objects.
Arrays are represented in JSON as square brackets. The following is an empty array.
[]
Objects are repre with curly braces. The following is an empty object.
{}
Objects can have properties (which correspond to columns in tabular terms)
Sample
[{"column1":"value1", "column2":10}, {"column1":"value2", "column2":20}]
Try it!