Google Analytics · Schema

GoogleAnalyticsAdminV1betaAccessDateRange

A contiguous range of days: startDate, startDate + 1, ..., endDate.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
endDate string The inclusive end date for the query in the format `YYYY-MM-DD`. Cannot be before `startDate`. The format `NdaysAgo`, `yesterday`, or `today` is also accepted, and in that case, the date is inferred b
startDate string The inclusive start date for the query in the format `YYYY-MM-DD`. Cannot be after `endDate`. The format `NdaysAgo`, `yesterday`, or `today` is also accepted, and in that case, the date is inferred ba
View JSON Schema on GitHub

JSON Schema

google-analytics-googleanalyticsadminv1betaaccessdaterange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoogleAnalyticsAdminV1betaAccessDateRange",
  "title": "GoogleAnalyticsAdminV1betaAccessDateRange",
  "description": "A contiguous range of days: startDate, startDate + 1, ..., endDate.",
  "properties": {
    "endDate": {
      "description": "The inclusive end date for the query in the format `YYYY-MM-DD`. Cannot be before `startDate`. The format `NdaysAgo`, `yesterday`, or `today` is also accepted, and in that case, the date is inferred based on the current time in the request's time zone.",
      "type": "string",
      "example": "2026-04-17"
    },
    "startDate": {
      "description": "The inclusive start date for the query in the format `YYYY-MM-DD`. Cannot be after `endDate`. The format `NdaysAgo`, `yesterday`, or `today` is also accepted, and in that case, the date is inferred based on the current time in the request's time zone.",
      "type": "string",
      "example": "2026-04-17"
    }
  },
  "type": "object"
}