{ "$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" }