You can export a testsheet into well-formed JSON documents. Exporting Testsheets into JSON documents is quite useful as a template for structuring much larger data sets for subsequent JSON Import.

To generate any column of a testsheet to JSON, click on the column, and then choose either Export JSON to create a file, or click Export JSON to clipboard. The export file from the Cargo sample's Output column is as shown:

[
    {
        "volume": 10,
        "container": "standard",
        "weight": 1000
    },
    {
        "volume": 40,
        "container": "oversize",
        "weight": 1000
    },
    {
        "volume": 20,
        "container": "heavyweight",
        "weight": 30000
    },
    {
        "volume": 10,
        "container": "reefer",
        "needsRefrigeration": true,
        "weight": 1000
    }
]