Neynar · Schema

FungibleBalance

Neynar Farcaster API schema for FungibleBalance

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
balance object
object string
token object
View JSON Schema on GitHub

JSON Schema

fungiblebalance.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/FungibleBalance",
  "title": "FungibleBalance",
  "description": "Neynar Farcaster API schema for FungibleBalance",
  "properties": {
    "balance": {
      "properties": {
        "in_token": {
          "type": "string"
        },
        "in_usd": {
          "nullable": true,
          "type": "number"
        }
      },
      "required": [
        "in_usd",
        "in_token"
      ],
      "type": "object"
    },
    "object": {
      "enum": [
        "fungible_balance"
      ],
      "type": "string"
    },
    "token": {
      "$ref": "#/components/schemas/Fungible"
    }
  },
  "required": [
    "object",
    "token",
    "balance"
  ],
  "type": "object"
}