Neynar · Schema

ChannelActivity

Neynar Farcaster API schema for ChannelActivity

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
cast_count_1d string
cast_count_30d string
cast_count_7d string
channel object
object string
View JSON Schema on GitHub

JSON Schema

channelactivity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/ChannelActivity",
  "title": "ChannelActivity",
  "description": "Neynar Farcaster API schema for ChannelActivity",
  "properties": {
    "cast_count_1d": {
      "type": "string"
    },
    "cast_count_30d": {
      "type": "string"
    },
    "cast_count_7d": {
      "type": "string"
    },
    "channel": {
      "$ref": "#/components/schemas/Channel"
    },
    "object": {
      "enum": [
        "channel_activity"
      ],
      "type": "string"
    }
  },
  "required": [
    "object",
    "cast_count_1d",
    "cast_count_7d",
    "cast_count_30d",
    "channel"
  ],
  "type": "object"
}