Neynar · Schema

UsersResponse

Neynar Farcaster API schema for UsersResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

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

JSON Schema

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