Neynar · Schema

Hub HubEventMergeUsernameProof

Neynar Hub API schema for HubEventMergeUsernameProof

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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