Neynar · Schema

TransactionSendFungiblesReceipt

Neynar Farcaster API schema for TransactionSendFungiblesReceipt

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
amount number
fid object
reason string Reason for failure (if status is failed)
status string
View JSON Schema on GitHub

JSON Schema

transactionsendfungiblesreceipt.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/TransactionSendFungiblesReceipt",
  "title": "TransactionSendFungiblesReceipt",
  "description": "Neynar Farcaster API schema for TransactionSendFungiblesReceipt",
  "properties": {
    "amount": {
      "type": "number"
    },
    "fid": {
      "$ref": "#/components/schemas/Fid"
    },
    "reason": {
      "description": "Reason for failure (if status is failed)",
      "type": "string"
    },
    "status": {
      "enum": [
        "sent",
        "failed"
      ],
      "type": "string"
    }
  },
  "required": [
    "fid",
    "amount",
    "status"
  ],
  "type": "object"
}