Forgejo · Schema

WatchInfo

WatchInfo represents an API watch status of one repository

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
created_at string
ignored boolean
reason object
repository_url string
subscribed boolean
url string
View JSON Schema on GitHub

JSON Schema

watchinfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "WatchInfo",
  "description": "WatchInfo represents an API watch status of one repository",
  "type": "object",
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "CreatedAt"
    },
    "ignored": {
      "type": "boolean",
      "x-go-name": "Ignored"
    },
    "reason": {
      "x-go-name": "Reason"
    },
    "repository_url": {
      "type": "string",
      "x-go-name": "RepositoryURL"
    },
    "subscribed": {
      "type": "boolean",
      "x-go-name": "Subscribed"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}