Neynar · Schema

Hub StorageLimit

Neynar Hub API schema for StorageLimit

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
storeType object
limit integer
View JSON Schema on GitHub

JSON Schema

hub-storagelimit.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/hub/StorageLimit",
  "title": "Hub StorageLimit",
  "description": "Neynar Hub API schema for StorageLimit",
  "type": "object",
  "properties": {
    "storeType": {
      "$ref": "#/components/schemas/StoreType"
    },
    "limit": {
      "type": "integer",
      "format": "uint64"
    }
  },
  "required": [
    "storeType",
    "limit"
  ]
}