PostHog · Schema
TicketView
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| short_id | string | |
| name | string | |
| filters | object | Saved ticket filter criteria. May contain status, priority, channel, sla, assignee, tags, dateFrom, dateTo, and sorting keys. |
| created_at | string | |
| created_by | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TicketView",
"title": "TicketView",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"short_id": {
"type": "string",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 400
},
"filters": {
"type": "object",
"additionalProperties": true,
"description": "Saved ticket filter criteria. May contain status, priority, channel, sla, assignee, tags, dateFrom, dateTo, and sorting keys."
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true
}
},
"required": [
"created_at",
"created_by",
"id",
"name",
"short_id"
]
}