Neynar · Schema

UserViewerContext

Adds context on the viewer's follow relationship with the user.

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
blocked_by boolean Indicates if the viewer is blocked by the user.
blocking boolean Indicates if the viewer is blocking the user.
followed_by boolean Indicates if the viewer is followed by the user.
following boolean Indicates if the viewer is following the user.
View JSON Schema on GitHub

JSON Schema

userviewercontext.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/UserViewerContext",
  "title": "UserViewerContext",
  "description": "Adds context on the viewer's follow relationship with the user.",
  "properties": {
    "blocked_by": {
      "description": "Indicates if the viewer is blocked by the user.",
      "type": "boolean"
    },
    "blocking": {
      "description": "Indicates if the viewer is blocking the user.",
      "type": "boolean"
    },
    "followed_by": {
      "description": "Indicates if the viewer is followed by the user.",
      "type": "boolean"
    },
    "following": {
      "description": "Indicates if the viewer is following the user.",
      "type": "boolean"
    }
  },
  "required": [
    "following",
    "followed_by",
    "blocking",
    "blocked_by"
  ],
  "type": "object"
}