Neynar · Schema

UserDehydrated

Neynar Farcaster API schema for UserDehydrated

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
custody_address object
display_name string
fid object
object string
pfp_url string
score number
username string
View JSON Schema on GitHub

JSON Schema

userdehydrated.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/UserDehydrated",
  "title": "UserDehydrated",
  "description": "Neynar Farcaster API schema for UserDehydrated",
  "properties": {
    "custody_address": {
      "$ref": "#/components/schemas/EthAddress"
    },
    "display_name": {
      "nullable": true,
      "type": "string"
    },
    "fid": {
      "$ref": "#/components/schemas/Fid"
    },
    "object": {
      "enum": [
        "user_dehydrated"
      ],
      "type": "string"
    },
    "pfp_url": {
      "nullable": true,
      "type": "string"
    },
    "score": {
      "type": "number"
    },
    "username": {
      "type": "string"
    }
  },
  "required": [
    "object",
    "fid"
  ],
  "type": "object"
}