{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/TransactionSendFungiblesReqBody", "title": "TransactionSendFungiblesReqBody", "description": "Neynar Farcaster API schema for TransactionSendFungiblesReqBody", "properties": { "fungible_contract_address": { "description": "Contract address of the fungible token to send. If not provided, the default is the native token of the network.", "example": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "pattern": "^0x[a-fA-F0-9]{40}$", "type": "string" }, "network": { "enum": [ "base", "optimism", "base-sepolia" ], "type": "string" }, "recipients": { "items": { "$ref": "#/components/schemas/TransactionSendFungiblesRecipient" }, "maxItems": 200, "minItems": 1, "type": "array" } }, "required": [ "network", "recipients" ], "type": "object" }