Neynar · Schema

Hub HubEventMergeOnChainEvent

Neynar Hub API schema for HubEventMergeOnChainEvent

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
type string
id integer
mergeOnChainEventBody object
View JSON Schema on GitHub

JSON Schema

hub-hubeventmergeonchainevent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/hub/HubEventMergeOnChainEvent",
  "title": "Hub HubEventMergeOnChainEvent",
  "description": "Neynar Hub API schema for HubEventMergeOnChainEvent",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "example": "HUB_EVENT_TYPE_MERGE_ON_CHAIN_EVENT"
    },
    "id": {
      "type": "integer",
      "format": "uint64"
    },
    "mergeOnChainEventBody": {
      "$ref": "#/components/schemas/MergeOnChainEventBody"
    }
  },
  "required": [
    "type",
    "id",
    "mergeOnChainEventBody"
  ]
}