PostHog · Schema

AddSnapshotsResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
added integer
uploads array
View JSON Schema on GitHub

JSON Schema

posthog-addsnapshotsresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddSnapshotsResult",
  "title": "AddSnapshotsResult",
  "type": "object",
  "properties": {
    "added": {
      "type": "integer"
    },
    "uploads": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UploadTarget"
      }
    }
  },
  "required": [
    "added",
    "uploads"
  ]
}