Google Analytics · Schema

DimensionOrderBy

Sorts by dimension values.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
dimensionName string A dimension name in the request to order by.
orderType string Controls the rule for dimension value ordering.
View JSON Schema on GitHub

JSON Schema

google-analytics-dimensionorderby-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DimensionOrderBy",
  "title": "DimensionOrderBy",
  "description": "Sorts by dimension values.",
  "properties": {
    "dimensionName": {
      "description": "A dimension name in the request to order by.",
      "type": "string",
      "example": "Example Name"
    },
    "orderType": {
      "description": "Controls the rule for dimension value ordering.",
      "enum": [
        "ORDER_TYPE_UNSPECIFIED",
        "ALPHANUMERIC",
        "CASE_INSENSITIVE_ALPHANUMERIC",
        "NUMERIC"
      ],
      "type": "string",
      "example": "ORDER_TYPE_UNSPECIFIED"
    }
  },
  "type": "object"
}