Neynar · Schema

WebhookPatchReqBody

Neynar Farcaster API schema for WebhookPatchReqBody

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
active string
webhook_id string
View JSON Schema on GitHub

JSON Schema

webhookpatchreqbody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/WebhookPatchReqBody",
  "title": "WebhookPatchReqBody",
  "description": "Neynar Farcaster API schema for WebhookPatchReqBody",
  "properties": {
    "active": {
      "enum": [
        "true",
        "false"
      ],
      "type": "string"
    },
    "webhook_id": {
      "type": "string"
    }
  },
  "required": [
    "webhook_id",
    "active"
  ],
  "type": "object"
}