PostHog · Schema

ErrorTrackingSymbolSet

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
ref string
team_id integer
created_at string
last_used string
storage_ptr string
failure_reason string
release object Release associated with this symbol set
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingsymbolset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingSymbolSet",
  "title": "ErrorTrackingSymbolSet",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "ref": {
      "type": "string"
    },
    "team_id": {
      "type": "integer",
      "readOnly": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "last_used": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "storage_ptr": {
      "type": "string",
      "nullable": true
    },
    "failure_reason": {
      "type": "string",
      "nullable": true
    },
    "release": {
      "type": "object",
      "additionalProperties": true,
      "nullable": true,
      "description": "Release associated with this symbol set",
      "readOnly": true
    }
  },
  "required": [
    "created_at",
    "id",
    "ref",
    "release",
    "team_id"
  ]
}