{ "$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" ] }