PostHog · Schema

S3PresignedPost

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
url string Presigned S3 POST URL
fields object Form fields that must be submitted verbatim with the file upload
View JSON Schema on GitHub

JSON Schema

posthog-s3presignedpost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/S3PresignedPost",
  "title": "S3PresignedPost",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Presigned S3 POST URL"
    },
    "fields": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Form fields that must be submitted verbatim with the file upload"
    }
  },
  "required": [
    "fields",
    "url"
  ]
}