Neynar · Schema

Hub StorageRentEventBody

Neynar Hub API schema for StorageRentEventBody

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
payer string
units integer
expiry integer
View JSON Schema on GitHub

JSON Schema

hub-storagerenteventbody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/hub/StorageRentEventBody",
  "title": "Hub StorageRentEventBody",
  "description": "Neynar Hub API schema for StorageRentEventBody",
  "type": "object",
  "properties": {
    "payer": {
      "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
      "type": "string",
      "format": "byte"
    },
    "units": {
      "type": "integer",
      "format": "int64"
    },
    "expiry": {
      "type": "integer",
      "format": "int64"
    }
  },
  "required": [
    "payer",
    "units",
    "expiry"
  ]
}