Neynar · Schema

FarcasterFungible

Neynar Farcaster API schema for FarcasterFungible

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
cast_count integer The total number of comments on the token
fungible object
object string
View JSON Schema on GitHub

JSON Schema

farcasterfungible.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/FarcasterFungible",
  "title": "FarcasterFungible",
  "description": "Neynar Farcaster API schema for FarcasterFungible",
  "properties": {
    "cast_count": {
      "description": "The total number of comments on the token",
      "type": "integer"
    },
    "fungible": {
      "$ref": "#/components/schemas/Fungible"
    },
    "object": {
      "enum": [
        "farcaster_fungible"
      ],
      "type": "string"
    }
  },
  "required": [
    "object",
    "fungible",
    "cast_count"
  ],
  "type": "object"
}