Request Data Source Metadata


🕐 2 min read

Get the data structure in the data source

The Request data source metadata method provides you with information about the queryable fields in a data source. This method requires that you pass in the data source object, which could be the datasourceLuid for a published data source, or the workbookDatasourceId for a workbook data source. To find the datasourceLuid, see Find the data source LUID.

{
    "datasource": {
        "datasourceLuid": "1a2a3b4b-5c6c-7d8d-9e0e-1f2f3a4a5b6b",
    }
}

For a workbook data source, you must specify the workbookDatasourceId, and also include the session ID and the global session header (for Tableau Cloud) in the request headers. For instructions, see Find the workbook session ID and workbook data source ID.

{
    "datasource": {
        "workbookDatasourceId": "federated.1a2b3c4d5e6f7g8h9i1j2k3l4m5n"
    }
}

The request has the following options:

Request data source metadata response

This API method returns two objects: data and extraData.

The data object returns these fields:


The extraData object returns a parameters object with these fields:

Note:
  • DATETIME and SPATIAL are currently not supported parameter dataType values.
  • Date type parameters for using range controls don't support step size validation when configured with ISO Years, ISO Quarters, or ISO Weeks (all ISO period types).

Example responses

A bin on the data source

{
    "data": [
        {
            "fieldName": "Profit (bin)",
            "fieldCaption": "Profit (bin)",
            "dataType": "INTEGER",
            "fieldRole": "DIMENSION",
            "fieldType": "ORDINAL",
            "defaultAggregation": "NONE",
            "columnClass": "BIN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862",
            "formula": "SYS_NUMBIN([Profit],[Profit Bin Size])",
        }
    ]
}

A group on the data source

This example response shows the groupForumula, which is included when the includeGroupForumulas option is set to true. This example doesn’t show all the groupings that would be shown in the response, or all of the other fields.

{
    "data": [
        {
            "fieldName": "Product Name (group)",
            "fieldCaption": "Manufacturer",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "GROUP",
            "groupFormula": {
                "baseFieldName": "Product Name",
                "groupings": [
                    {
                        "alias": "3D Systems",
                        "members": [
                            "3D Systems Cube Printer, 2nd Generation, Magenta",
                            "3D Systems Cube Printer, 2nd Generation, White"
                        ]
                    },
                    {
                        "alias": "3M",
                        "members": [
                            "3M Hangers With Command Adhesive",
                            "3M Office Air Cleaner",
                            "3M Organizer Strips",
                            "3M Polarizing Light Filter Sleeves",
                            "3M Polarizing Task Lamp with Clamp Arm, Light Gray",
                            "3M Replacement Filter for Office Air Cleaner for 20' x 33' Room"
                        ]
                    }  
                ],
               "hasIncludeOther": true
            },
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862",
            "hidden": false
        }
    ]
}

A calculation on the data source

{
    "data": [
        {
            "fieldName": "Calculation_1368249927221915648",
            "fieldCaption": "Profit Ratio",
            "dataType": "REAL",
            "fieldRole": "MEASURE",
            "fieldType": "CONTINUOUS",
            "defaultAggregation": "AGG",
            "columnClass": "CALCULATION",
            "isLODCalc": false,
            "formula": "SUM([Profit])/SUM([Sales])"
        }
    ]
}

Full example from the Superstore data source

{
    "data": [
        {
            "fieldName": "Category",
            "fieldCaption": "Category",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862",
            "description": "This is the *Category*."
        },
        {
            "fieldName": "Discount",
            "fieldCaption": "Discount",
            "dataType": "REAL",
            "fieldRole": "MEASURE",
            "fieldType": "CONTINUOUS",
            "defaultAggregation": "SUM",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Regional Manager",
            "fieldCaption": "Regional Manager",
            "dataType": "STRING",
            "fieldRole": "UNKNOWN",
            "fieldType": "UNKNOWN",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "People_D73023733B004CC1B3CB1ACF62F4A965"
        },
        {
            "fieldName": "Ship Date",
            "fieldCaption": "Ship Date",
            "dataType": "DATE",
            "fieldRole": "DIMENSION",
            "fieldType": "ORDINAL",
            "defaultAggregation": "YEAR",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Sub-Category",
            "fieldCaption": "Sub-Category",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Profit (bin)",
            "fieldCaption": "Profit (bin)",
            "dataType": "INTEGER",
            "fieldRole": "DIMENSION",
            "fieldType": "ORDINAL",
            "defaultAggregation": "NONE",
            "columnClass": "BIN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862",
            "formula": "SYS_NUMBIN([Profit],[Profit Bin Size])"
        },
        {
            "fieldName": "Segment",
            "fieldCaption": "Segment",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Sales",
            "fieldCaption": "Sales",
            "dataType": "REAL",
            "fieldRole": "MEASURE",
            "fieldType": "CONTINUOUS",
            "defaultAggregation": "SUM",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Product Name (group)",
            "fieldCaption": "Manufacturer",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "GROUP",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Ship Mode",
            "fieldCaption": "Ship Mode",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Order Date",
            "fieldCaption": "Order Date",
            "dataType": "DATE",
            "fieldRole": "DIMENSION",
            "fieldType": "ORDINAL",
            "defaultAggregation": "YEAR",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Profit",
            "fieldCaption": "Profit",
            "dataType": "REAL",
            "fieldRole": "MEASURE",
            "fieldType": "CONTINUOUS",
            "defaultAggregation": "SUM",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Calculation_1368249927221915648",
            "fieldCaption": "Profit Ratio",
            "dataType": "REAL",
            "fieldRole": "MEASURE",
            "fieldType": "CONTINUOUS",
            "defaultAggregation": "AGG",
            "columnClass": "CALCULATION",
            "isLODCalc": false,
            "formula": "SUM([Profit])/SUM([Sales])"
        },
        {
            "fieldName": "Customer Name",
            "fieldCaption": "Customer Name",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Returned",
            "fieldCaption": "Returned",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Returns_2AA0FE4D737A4F63970131D0E7480A03"
        },
        {
            "fieldName": "Postal Code",
            "fieldCaption": "Postal Code",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "ORDINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Order ID",
            "fieldCaption": "Order ID",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Product Name",
            "fieldCaption": "Product Name",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Quantity",
            "fieldCaption": "Quantity",
            "dataType": "INTEGER",
            "fieldRole": "MEASURE",
            "fieldType": "CONTINUOUS",
            "defaultAggregation": "SUM",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "City",
            "fieldCaption": "City",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "State/Province",
            "fieldCaption": "State/Province",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Region",
            "fieldCaption": "Region",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        },
        {
            "fieldName": "Country/Region",
            "fieldCaption": "Country/Region",
            "dataType": "STRING",
            "fieldRole": "DIMENSION",
            "fieldType": "NOMINAL",
            "defaultAggregation": "COUNT",
            "columnClass": "COLUMN",
            "logicalTableId": "Orders_ECFCA1FB690A41FE803BC071773BA862"
        }
    ],
    "extraData": {
        "parameters": [
            {
                "parameterType": "QUANTITATIVE_RANGE",
                "parameterName": "Parameter 1",
                "parameterCaption": "Top Customers",
                "dataType": "INTEGER",
                "value": 5.0,
                "min": 5.0,
                "max": 20.0,
                "step": 5.0
            },
            {
                "parameterType": "QUANTITATIVE_RANGE",
                "parameterName": "Parameter 2",
                "parameterCaption": "Profit Bin Size",
                "dataType": "INTEGER",
                "value": 200.0,
                "min": 50.0,
                "max": 200.0,
                "step": 50.0
            }
        ]
    }
}