Neynar · Schema

Follower

Neynar Farcaster API schema for Follower

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
app object
object string
user object
View JSON Schema on GitHub

JSON Schema

follower.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/Follower",
  "title": "Follower",
  "description": "Neynar Farcaster API schema for Follower",
  "properties": {
    "app": {
      "$ref": "#/components/schemas/UserDehydrated"
    },
    "object": {
      "enum": [
        "follower"
      ],
      "type": "string"
    },
    "user": {
      "$ref": "#/components/schemas/User"
    }
  },
  "required": [
    "object",
    "user"
  ],
  "type": "object"
}