PostHog · Schema

Artifact

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
content_hash string
width integer
height integer
download_url string
View JSON Schema on GitHub

JSON Schema

posthog-artifact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Artifact",
  "title": "Artifact",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "content_hash": {
      "type": "string"
    },
    "width": {
      "type": "integer",
      "nullable": true
    },
    "height": {
      "type": "integer",
      "nullable": true
    },
    "download_url": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "content_hash",
    "download_url",
    "height",
    "id",
    "width"
  ]
}