Forgejo · Schema

NodeInfo

NodeInfo contains standardized way of exposing metadata about a server running one of the distributed social networks

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
metadata object
openRegistrations boolean
protocols array
services object
software object
usage object
version string
View JSON Schema on GitHub

JSON Schema

nodeinfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NodeInfo",
  "description": "NodeInfo contains standardized way of exposing metadata about a server running one of the distributed social networks",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "x-go-name": "Metadata"
    },
    "openRegistrations": {
      "type": "boolean",
      "x-go-name": "OpenRegistrations"
    },
    "protocols": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "Protocols"
    },
    "services": {
      "$ref": "#/definitions/NodeInfoServices"
    },
    "software": {
      "$ref": "#/definitions/NodeInfoSoftware"
    },
    "usage": {
      "$ref": "#/definitions/NodeInfoUsage"
    },
    "version": {
      "type": "string",
      "x-go-name": "Version"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}