Google Super

GOOGLESUPER_CREATE_EXPANDED_DATA_SET

Tool to create an expanded data set for a property. Use when you need to combine specific dimensions and metrics into a custom dataset after property creation.

Remote googlesuper

Other tools also called GOOGLESUPER_CREATE_EXPANDED_DATA_SET? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "parent": {
      "type": "string",
      "title": "Parent",
      "pattern": "^properties/\\\\d+$",
      "examples": [
        "properties/123456789"
      ],
      "description": "Parent property resource name. Format: properties/{propertyId}"
    },
    "expandedDataSet": {
      "type": "object",
      "title": "Expanded Data Set",
      "required": [
        "displayName",
        "dimensionNames",
        "metricNames"
      ],
      "properties": {
        "description": {
          "type": "string",
          "title": "Description",
          "default": null,
          "nullable": true,
          "description": "Optional. Description of the expanded data set."
        },
        "displayName": {
          "type": "string",
          "title": "Display Name",
          "examples": [
            "Monthly_Region_Metrics"
          ],
          "description": "Required. Human-readable display name for the expanded data set."
        },
        "metricNames": {
          "type": "array",
          "items": {
            "type": "string",
            "properties": {}
          },
          "title": "Metric Names",
          "examples": [
            "sessions",
            "purchaseEvents"
          ],
          "description": "Required. List of metric names to include in the expanded data set."
        },
        "dimensionNames": {
          "type": "array",
          "items": {
            "type": "string",
            "properties": {}
          },
          "title": "Dimension Names",
          "examples": [
            "date",
            "region"
          ],
          "description": "Required. List of dimension names to include in the expanded data set."
        }
      },
      "description": "Definition of the ExpandedDataSet to create.",
      "additionalProperties": false
    }
  }
}