PostHog · Schema

SnapshotManifestItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
identifier string
content_hash string
width integer
height integer
metadata object
View JSON Schema on GitHub

JSON Schema

posthog-snapshotmanifestitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SnapshotManifestItem",
  "title": "SnapshotManifestItem",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string"
    },
    "content_hash": {
      "type": "string"
    },
    "width": {
      "type": "integer",
      "nullable": true
    },
    "height": {
      "type": "integer",
      "nullable": true
    },
    "metadata": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "required": [
    "content_hash",
    "identifier"
  ]
}