Neynar · Schema

Subscriber

Neynar Farcaster API schema for Subscriber

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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