Neynar · Schema

Response Types for the Sync RPC Methods

Neynar Hub API schema for HubInfoResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
version string
isSyncing boolean
nickname string
rootHash string
dbStats object
peerId string
hubOperatorFid integer
View JSON Schema on GitHub

JSON Schema

hub-hubinforesponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/hub/HubInfoResponse",
  "title": "Response Types for the Sync RPC Methods",
  "description": "Neynar Hub API schema for HubInfoResponse",
  "required": [
    "hubOperatorFid",
    "isSyncing",
    "nickname",
    "peerId",
    "rootHash",
    "version"
  ],
  "type": "object",
  "properties": {
    "version": {
      "type": "string"
    },
    "isSyncing": {
      "type": "boolean"
    },
    "nickname": {
      "type": "string"
    },
    "rootHash": {
      "type": "string"
    },
    "dbStats": {
      "$ref": "#/components/schemas/DbStats"
    },
    "peerId": {
      "type": "string"
    },
    "hubOperatorFid": {
      "type": "integer",
      "format": "uint64"
    }
  }
}