Unified.to · Schema

MarketingReportLink

IntegrationsUnified API

Properties

Name Type Description
click_percentage number
last_click_at string
total_clicks number
unique_click_percentage number
unique_clicks number
url string
View JSON Schema on GitHub

JSON Schema

unified-to-marketingreportlink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MarketingReportLink",
  "title": "MarketingReportLink",
  "properties": {
    "click_percentage": {
      "type": "number"
    },
    "last_click_at": {
      "format": "date-time",
      "type": "string"
    },
    "total_clicks": {
      "type": "number"
    },
    "unique_click_percentage": {
      "type": "number"
    },
    "unique_clicks": {
      "type": "number"
    },
    "url": {
      "type": "string"
    }
  },
  "type": "object"
}