Forgejo · Schema

NodeInfoUsage

NodeInfoUsage contains usage statistics for this server

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
localComments integer
localPosts integer
users object
View JSON Schema on GitHub

JSON Schema

nodeinfousage.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NodeInfoUsage",
  "description": "NodeInfoUsage contains usage statistics for this server",
  "type": "object",
  "properties": {
    "localComments": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "LocalComments"
    },
    "localPosts": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "LocalPosts"
    },
    "users": {
      "$ref": "#/definitions/NodeInfoUsageUsers"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}