PostHog · Schema

ErrorTrackingRelease

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
hash_id string
team_id integer
created_at string
metadata object
version string
project string
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingrelease-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingRelease",
  "title": "ErrorTrackingRelease",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "hash_id": {
      "type": "string"
    },
    "team_id": {
      "type": "integer",
      "readOnly": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "metadata": {
      "nullable": true
    },
    "version": {
      "type": "string"
    },
    "project": {
      "type": "string"
    }
  },
  "required": [
    "created_at",
    "hash_id",
    "id",
    "project",
    "team_id",
    "version"
  ]
}