Neynar · Schema

ReactionWithCastInfo

Neynar Farcaster API schema for ReactionWithCastInfo

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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