PostHog · Schema

ApproveSnapshotInput

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
identifier string
new_hash string
View JSON Schema on GitHub

JSON Schema

posthog-approvesnapshotinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApproveSnapshotInput",
  "title": "ApproveSnapshotInput",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string"
    },
    "new_hash": {
      "type": "string"
    }
  },
  "required": [
    "identifier",
    "new_hash"
  ]
}