Forgejo · Schema

NotificationThread

NotificationThread expose Notification on API

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
id integer
pinned boolean
repository object
subject object
unread boolean
updated_at string
url string
View JSON Schema on GitHub

JSON Schema

notificationthread.json Raw ↑
{
  "$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"
}