Neynar · Schema

Hub MessageDataVerificationRemove

Represents a message that removes an existing blockchain address verification from a user's profile. This allows users to disassociate previously verified addresses from their account.

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain
View JSON Schema on GitHub

JSON Schema

hub-messagedataverificationremove.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/hub/MessageDataVerificationRemove",
  "title": "Hub MessageDataVerificationRemove",
  "description": "Represents a message that removes an existing blockchain address verification from a user's profile. This allows users to disassociate previously verified addresses from their account.",
  "allOf": [
    {
      "$ref": "#/components/schemas/MessageDataCommon"
    },
    {
      "type": "object",
      "required": [
        "verificationRemoveBody"
      ],
      "properties": {
        "verificationRemoveBody": {
          "description": "Contains the blockchain address for which the verification should be removed from the user's profile.",
          "allOf": [
            {
              "$ref": "#/components/schemas/VerificationRemoveBody"
            }
          ]
        }
      }
    }
  ]
}