PostHog · Schema

AddSnapshotsInput

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
snapshots array
baseline_hashes object
View JSON Schema on GitHub

JSON Schema

posthog-addsnapshotsinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddSnapshotsInput",
  "title": "AddSnapshotsInput",
  "type": "object",
  "properties": {
    "snapshots": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SnapshotManifestItem"
      }
    },
    "baseline_hashes": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "snapshots"
  ]
}