Download data: JSON filetype

Javascript Object Notation (JSON) is a text-based format to store arbitrary object structures. It can be read by a variety of programming languages.

Python

Here's an example on how to read the data from a json file in Python:

import json
from pprint import pprint

with open('Meadows_myStudy.json') as data_file:  # replace with your filename
    data = json.load(data_file)

pprint(data)

Matlab

For Matlab, install the jsonlab toolbox and try this:

data = loadjson('Meadows_myStudy.json')  % replace with your filename