ExportDataModel

Field NULL Description Note
SourceTenant
string
  The name of the source tenant (or blank if it is System level).  
SelectedConnections
array of objects
 

An array of Connection objects.

Note

It is enough to specify only the names of the Сonnector, Schema, and DataSource, as in the example below.

 
Sample:
{
   "SourceTenant": "YourSourceTenantName",
   "SelectedConnections": [
      {
         "Name": "Northwind",
         "DBSource": {
            "QuerySources": [
               {
                  "Name": "dbo",
                  "QuerySources": [
                     {
                        "Name": "Orders"
                     },
                     {
                        "Name": "Order Details"
                     }
                  ]
               }
            ]
         }
      }
   ]
}