Neynar · Schema

FrameActionButton

Neynar Farcaster API schema for FrameActionButton

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
action_type object
index integer Index of the button
post_url string Used specifically for the tx action type to post a successful transaction hash
target string Target of the button
title string Title of the button
View JSON Schema on GitHub

JSON Schema

frameactionbutton.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/FrameActionButton",
  "title": "FrameActionButton",
  "description": "Neynar Farcaster API schema for FrameActionButton",
  "properties": {
    "action_type": {
      "$ref": "#/components/schemas/FrameButtonActionType"
    },
    "index": {
      "description": "Index of the button",
      "type": "integer"
    },
    "post_url": {
      "description": "Used specifically for the tx action type to post a successful transaction hash",
      "type": "string"
    },
    "target": {
      "description": "Target of the button",
      "type": "string"
    },
    "title": {
      "description": "Title of the button",
      "type": "string"
    }
  },
  "required": [
    "index",
    "action_type"
  ],
  "type": "object"
}