Neynar · Schema

Hub HubEventPruneMessage

Neynar Hub API schema for HubEventPruneMessage

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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