Wiki

Clone wiki

Interactive Data Exporation / dataDescription.json

###dataDescription###

For a complete overview please look at the Data Description Schema Reference

The dataDescription.json file is the specification that the data provider provides, which provides the system, the information pertaining to the number of attributes, the type of each attribute, whether or not filtering would be performed on the attribute etc.

The following is an example of a dataDescription.json file:

#!json

[
    {
        "attributeName": "A",
        "datatype": "enum",
        "attributeType": ["visual", "filtering"],
        "dataSourceAlias": "sourceJoin"
    },    
    {
        "attributeName": "B",
        "datatype": "enum",
        "attributeType": ["filtering"],
        "dataSourceAlias": "sourceJoin"
    },    
    {
        "attributeName": "C",
        "datatype": "enum",
        "attributeType": ["visual", "filtering"],
        "dataSourceAlias": "sourceJoin"
    },   
    {
        "attributeName": "D",
        "datatype": "enum",
        "attributeType": ["visual", "filtering"],
        "dataSourceAlias": "sourceJoin"
    }

]

Updated