Analytics - Direct Query Links and JSON Data Structure

Since 0.5.0


From Version 0.5.0 JSON data is returned in the following format by default:


{  "data": [    {      "id": "1001",      "type": "Square"    },    {      "id": "1002",      "type": "Triangle"    },    {      "id": "1005",      "type": "Circle"    },    {      "id": "1007",      "type": "Rectangle"    },    {      "id": "1006",      "type": "Diamond"    }  ] }

HTML


The "Return Row Array Only" option can be enabled to only return an array of rows. This was the default for earlier versions of the application. 


Example: 

[  {    "id": "1001",    "type": "Square"  },  {    "id": "1002",    "type": "Triangle"  },  {    "id": "1005",    "type": "Circle"  },  {    "id": "1007",    "type": "Rectangle"  },  {    "id": "1006",    "type": "Diamond"  } ]

Was this article helpful?