Neynar · Schema

Hub HubEventRevokeMessage

Neynar Hub API schema for HubEventRevokeMessage

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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