Neynar · Schema

TransactionFramePay

Neynar Farcaster API schema for TransactionFramePay

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
config object
id string Unique identifier for the transaction mini app
status object
transaction object
type object
url string URL that can be used to access the transaction mini app
View JSON Schema on GitHub

JSON Schema

transactionframepay.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/TransactionFramePay",
  "title": "TransactionFramePay",
  "description": "Neynar Farcaster API schema for TransactionFramePay",
  "properties": {
    "config": {
      "$ref": "#/components/schemas/TransactionFrameConfig"
    },
    "id": {
      "description": "Unique identifier for the transaction mini app",
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/TransactionFrameStatus"
    },
    "transaction": {
      "properties": {
        "to": {
          "$ref": "#/components/schemas/TransactionFrameDestination"
        }
      },
      "required": [
        "to"
      ],
      "type": "object"
    },
    "type": {
      "$ref": "#/components/schemas/TransactionFrameType"
    },
    "url": {
      "description": "URL that can be used to access the transaction mini app",
      "format": "uri",
      "type": "string"
    }
  },
  "required": [
    "id",
    "url",
    "type",
    "config",
    "status",
    "transaction"
  ],
  "type": "object"
}