PostHog · Schema

CreateRunResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
run_id string
uploads array
View JSON Schema on GitHub

JSON Schema

posthog-createrunresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRunResult",
  "title": "CreateRunResult",
  "type": "object",
  "properties": {
    "run_id": {
      "type": "string",
      "format": "uuid"
    },
    "uploads": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UploadTarget"
      }
    }
  },
  "required": [
    "run_id",
    "uploads"
  ]
}