Fathom Analytics · Schema

Fathom Site

A website registered in Fathom Analytics.

AnalyticsPrivacyGDPRWebsite AnalyticsCookielessPage ViewsEventsReporting

Properties

Name Type Description
id string Unique site identifier.
object string
name string Site display name.
sharing string Dashboard sharing setting.
created_at string ISO 8601 timestamp when the site was created.
View JSON Schema on GitHub

JSON Schema

fathom-site.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/fathom/main/json-schema/fathom-site.json",
  "title": "Fathom Site",
  "description": "A website registered in Fathom Analytics.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique site identifier."
    },
    "object": {
      "type": "string",
      "const": "site"
    },
    "name": {
      "type": "string",
      "description": "Site display name."
    },
    "sharing": {
      "type": "string",
      "enum": ["none", "private", "public"],
      "description": "Dashboard sharing setting."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the site was created."
    }
  },
  "required": ["id", "object", "name", "sharing", "created_at"]
}