B.1.8 csijson, B.1.8.1 a short introduction to json, B.1.8 – Campbell Scientific LoggerNet Datalogger Support Software User Manual
Page 508: B.1.8.1

Appendix B. Campbell Scientific File Formats
B.1.8 CSIJSON
CSIJSON is a file format that is relatively easy to parse in any language but
more particularly so in JavaScript since it adopts the same syntax rules that are
used for JavaScript object initialization. Its structure is much like CSIXML It is
very easy to digest in a JavaScript or ActionScript (Flash) environment and is
probably the most efficient means of handling CSI generated data in a web
browser context.
The CSIJSON file format is available for some CRBasic instructions including
TableFile and the WebPageBegin/WebPageEnd Format command.
B.1.8.1 A Short Introduction to JSON
Much like XML, JSON is a recursive structure with a root object (represented
by an opening and closing curly brace (‘{‘ and ‘}’). This root object can
contain named strings, numbers, objects, and arrays. A simple object
specification follows:
{
"head": {
"signature": xxxx,
"transaction": "xxxxyyyy",
"environment": {
}
"fields": [
]
},
"data": [ ]
}
This declaration declares an object that contains two empty sub-objects, head,
and data. In a JavaScript program, a string in this format can be easily parsed
using the Eval() function or the newer ParseJSON() function. Once parsed, the
data contained therein can be accessed using standard JavaScript notation.
B-14