Fathom Analytics · Schema

Fathom Account

A Fathom Analytics account.

AnalyticsPrivacyGDPRWebsite AnalyticsCookielessPage ViewsEventsReporting

Properties

Name Type Description
id string Unique account identifier.
object string
name string Account display name.
email string Account email address.
View JSON Schema on GitHub

JSON Schema

fathom-account.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/fathom/main/json-schema/fathom-account.json",
  "title": "Fathom Account",
  "description": "A Fathom Analytics account.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique account identifier."
    },
    "object": {
      "type": "string",
      "const": "account"
    },
    "name": {
      "type": "string",
      "description": "Account display name."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Account email address."
    }
  },
  "required": ["id", "object", "name", "email"]
}