Neynar · Schema

ChannelDehydrated

Neynar Farcaster API schema for ChannelDehydrated

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
id string
image_url string
name string
object string
viewer_context object
View JSON Schema on GitHub

JSON Schema

channeldehydrated.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/ChannelDehydrated",
  "title": "ChannelDehydrated",
  "description": "Neynar Farcaster API schema for ChannelDehydrated",
  "properties": {
    "id": {
      "type": "string"
    },
    "image_url": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "object": {
      "enum": [
        "channel_dehydrated"
      ],
      "type": "string"
    },
    "viewer_context": {
      "$ref": "#/components/schemas/ChannelUserContext"
    }
  },
  "required": [
    "id",
    "name",
    "object"
  ],
  "type": "object"
}