Neynar · Schema

BlockRecord

Neynar Farcaster API schema for BlockRecord

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
blocked object
blocked_at string
blocker object
object string
View JSON Schema on GitHub

JSON Schema

blockrecord.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/BlockRecord",
  "title": "BlockRecord",
  "description": "Neynar Farcaster API schema for BlockRecord",
  "properties": {
    "blocked": {
      "$ref": "#/components/schemas/User"
    },
    "blocked_at": {
      "format": "date-time",
      "type": "string"
    },
    "blocker": {
      "$ref": "#/components/schemas/User"
    },
    "object": {
      "enum": [
        "block"
      ],
      "type": "string"
    }
  },
  "required": [
    "object",
    "blocked_at"
  ],
  "type": "object"
}