Neynar · Schema

ReactionForCast

Neynar Farcaster API schema for ReactionForCast

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

reactionforcast.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/ReactionForCast",
  "title": "ReactionForCast",
  "description": "Neynar Farcaster API schema for ReactionForCast",
  "properties": {
    "app": {
      "$ref": "#/components/schemas/UserDehydrated"
    },
    "object": {
      "enum": [
        "likes",
        "recasts"
      ],
      "type": "string"
    },
    "reaction_timestamp": {
      "format": "date-time",
      "type": "string"
    },
    "reaction_type": {
      "$ref": "#/components/schemas/ReactionType"
    },
    "user": {
      "$ref": "#/components/schemas/User"
    }
  },
  "required": [
    "reaction_type",
    "reaction_timestamp",
    "object",
    "user"
  ],
  "type": "object"
}