PostHog · Schema
ErrorTrackingIssue
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| aggregations | object | |
| assignee | object | |
| cohort | object | |
| description | string | |
| external_issues | array | |
| first_event | object | |
| first_seen | string | |
| function | string | |
| id | string | |
| last_event | object | |
| last_seen | string | |
| library | string | |
| name | string | |
| source | string | |
| status | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ErrorTrackingIssue",
"title": "ErrorTrackingIssue",
"additionalProperties": false,
"properties": {
"aggregations": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/ErrorTrackingIssueAggregations"
}
],
"nullable": true
},
"assignee": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/ErrorTrackingIssueAssignee"
}
],
"nullable": true
},
"cohort": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/ErrorTrackingIssueCohort"
}
],
"nullable": true
},
"description": {
"default": null,
"title": "Description",
"type": "string",
"nullable": true
},
"external_issues": {
"default": null,
"title": "External Issues",
"items": {
"$ref": "#/components/schemas/ErrorTrackingExternalReference"
},
"type": "array",
"nullable": true
},
"first_event": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/FirstEvent"
}
],
"nullable": true
},
"first_seen": {
"format": "date-time",
"title": "First Seen",
"type": "string"
},
"function": {
"default": null,
"title": "Function",
"type": "string",
"nullable": true
},
"id": {
"title": "Id",
"type": "string"
},
"last_event": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/LastEvent"
}
],
"nullable": true
},
"last_seen": {
"format": "date-time",
"title": "Last Seen",
"type": "string"
},
"library": {
"default": null,
"title": "Library",
"type": "string",
"nullable": true
},
"name": {
"default": null,
"title": "Name",
"type": "string",
"nullable": true
},
"source": {
"default": null,
"title": "Source",
"type": "string",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ErrorTrackingIssueStatus"
}
},
"required": [
"first_seen",
"id",
"last_seen",
"status"
],
"type": "object"
}