Neynar · Schema

MuteListResponse

Neynar Farcaster API schema for MuteListResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
mutes array
next object
View JSON Schema on GitHub

JSON Schema

mutelistresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/MuteListResponse",
  "title": "MuteListResponse",
  "description": "Neynar Farcaster API schema for MuteListResponse",
  "properties": {
    "mutes": {
      "items": {
        "$ref": "#/components/schemas/MuteRecord"
      },
      "type": "array"
    },
    "next": {
      "$ref": "#/components/schemas/NextCursor"
    }
  },
  "required": [
    "mutes",
    "next"
  ],
  "type": "object"
}