{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "NotificationThread", "description": "NotificationThread expose Notification on API", "type": "object", "properties": { "id": { "type": "integer", "format": "int64", "x-go-name": "ID" }, "pinned": { "type": "boolean", "x-go-name": "Pinned" }, "repository": { "$ref": "#/definitions/Repository" }, "subject": { "$ref": "#/definitions/NotificationSubject" }, "unread": { "type": "boolean", "x-go-name": "Unread" }, "updated_at": { "type": "string", "format": "date-time", "x-go-name": "UpdatedAt" }, "url": { "type": "string", "x-go-name": "URL" } }, "x-go-package": "forgejo.org/modules/structs" }