PostHog · Schema
PatchedErrorTrackingIssueFull
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| status | object | |
| name | string | |
| description | string | |
| first_seen | string | |
| assignee | object | |
| external_issues | array | |
| cohort | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedErrorTrackingIssueFull",
"title": "PatchedErrorTrackingIssueFull",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"status": {
"$ref": "#/components/schemas/ErrorTrackingIssueFullStatusEnum"
},
"name": {
"type": "string",
"nullable": true
},
"description": {
"type": "string",
"nullable": true
},
"first_seen": {
"type": "string",
"format": "date-time"
},
"assignee": {
"$ref": "#/components/schemas/ErrorTrackingIssueAssignment"
},
"external_issues": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ErrorTrackingExternalReferenceResult"
}
},
"cohort": {
"type": "object",
"nullable": true,
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
},
"readOnly": true
}
}
}