Supported Data Sources

This section provides examples of supported data source configuration formats.

Below, you will find an example demonstrating how to connect the dataSources with different types. Each step is accompanied by inline comments that explain the underlying logic.

"dataSources":[
  {
     "name":"source1",						// The provided name of the source.
     "type":"LINK",							// The data source type can only have two possible values: "LINK" and "RAW".
     "value":"http://example.com/data-feed"	// The URL from which the data will be sourced.
  },
  {
     "name":"source2",
     "type":"RAW",
     "value":[								// The data is directly transmitted in this field.
        {
           "someField":"value1"
        },
        {
           "someField":"value2"
        }
     ]
  },
  {
     "name":"source3",						// Here's an example of a data set that contains values exclusively for filtering purposes. Please refer to Resources to learn more about the "filtering" transformer.
     "type":"RAW",
     "value":{
        "filterByNameValues":[
           "name1",							// Values that should be used for filtering.
           "name2"
        ],
        "filterByTypeValues":[
           "C",								// Values that should be used for filtering.
           "M"
        ]
     }
  }
]