Forgejo · Schema

NodeInfoUsageUsers

NodeInfoUsageUsers contains statistics about the users of this server

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
activeHalfyear integer
activeMonth integer
total integer
View JSON Schema on GitHub

JSON Schema

nodeinfousageusers.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NodeInfoUsageUsers",
  "description": "NodeInfoUsageUsers contains statistics about the users of this server",
  "type": "object",
  "properties": {
    "activeHalfyear": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ActiveHalfyear"
    },
    "activeMonth": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ActiveMonth"
    },
    "total": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Total"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}