{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LogsView", "title": "LogsView", "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": "Filter criteria \u2014 subset of LogsViewerFilters. May contain severityLevels, serviceNames, searchTerm, filterGroup, dateRange, and other keys." }, "pinned": { "type": "boolean" }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "created_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true } }, "required": [ "created_at", "created_by", "id", "name", "short_id", "updated_at" ] }