PostHog · Schema

ErrorTrackingFingerprint

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
fingerprint string
issue_id string
created_at string
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingfingerprint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingFingerprint",
  "title": "ErrorTrackingFingerprint",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "fingerprint": {
      "type": "string",
      "readOnly": true
    },
    "issue_id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  },
  "required": [
    "created_at",
    "fingerprint",
    "id",
    "issue_id"
  ]
}