Neynar · Schema

CastViewerContext

Adds context on interactions the viewer has made with the cast.

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
liked boolean Indicates if the viewer liked the cast.
recasted boolean Indicates if the viewer recasted the cast.
View JSON Schema on GitHub

JSON Schema

castviewercontext.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/CastViewerContext",
  "title": "CastViewerContext",
  "description": "Adds context on interactions the viewer has made with the cast.",
  "properties": {
    "liked": {
      "description": "Indicates if the viewer liked the cast.",
      "type": "boolean"
    },
    "recasted": {
      "description": "Indicates if the viewer recasted the cast.",
      "type": "boolean"
    }
  },
  "required": [
    "liked",
    "recasted"
  ],
  "type": "object"
}