Adobe Analytics · Schema

DateRange

A saved date range component

AdobeAnalyticsBusiness IntelligenceCustomer IntelligenceDigital MarketingMarketingWeb Analytics

Properties

Name Type Description
id string Unique date range identifier
name string Display name
description string Description of the date range
definition string The date range definition expression
View JSON Schema on GitHub

JSON Schema

adobe-analytics-date-range-schema.json Raw ↑
{
  "type": "object",
  "description": "A saved date range component",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique date range identifier",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "Display name",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "description": "Description of the date range",
      "example": "A sample description."
    },
    "definition": {
      "type": "string",
      "description": "The date range definition expression",
      "example": "example_value"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DateRange"
}