jsonexportline(
)

The jsonexportline( function exports the current database record in JSON format.


Parameters

No parameters.


Description

This function exports the current database record in JSON format. (JSON is a data interchange format that is used by many web API’s. See http://www.json.org for more information.)

Panorama has two data types that are not directly supported by JSON – dates and binary. Dates are exported as text, using the pattern YYYY-MM-DDT00-00-00Z. Here are some examples:

June 9, 2016 ☞ 2016-06-09T00-00-00Z
December 15, 2017 ☞ 2017-12-15T00-00-00Z
March 1, 1987 ☞ 1987-03-01T00-00-00Z

Binary data is exported as text, encoded in Base64 format. For more information on Base64 encoding see https://en.wikipedia.org/wiki/base64.


See Also


History

VersionStatusNotes
10.0NewNew in this version.