PostHog · Schema

UploadTarget

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
content_hash string
url string
fields object
View JSON Schema on GitHub

JSON Schema

posthog-uploadtarget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UploadTarget",
  "title": "UploadTarget",
  "type": "object",
  "properties": {
    "content_hash": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "fields": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "content_hash",
    "fields",
    "url"
  ]
}